-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
230 lines (195 loc) · 7.44 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" type="image/png" href="/icon.png" />
<link
href="https://fonts.googleapis.com/css?family=Poppins:400,500,600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.1.3/assets/owl.carousel.min.css" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css" />
<title>E-Comm</title>
</head>
<body>
<!-- navigation bar -->
<header class="header">
<nav class="nav">
<img
src="assests/logo.png"
alt="E-comm logo"
class="nav__logo"
id="logo"
/>
<ul class="nav__links">
<li class="nav__item">
<a class="nav__link" href="#section--1">Features</a>
</li>
<li class="nav__item">
<a class="nav__link" href="#section--2">Store</a>
</li>
<li class="nav__item">
<a class="nav__link" href="#footer">About Us</a>
</li>
<li class="nav__item">
<a class="nav__link nav__link--btn btn--show-modal" href="#"
>Create account</a
>
</li>
</ul>
</nav>
<div class="header__title" style="font-weight: bold;">
<h1 style="font-size: 5rem;" >
When
<!-- Green highlight effect -->
<span class="highlight" >Shopping</span>
Made<br />
<span class="highlight" >easy</span>
</h1>
<h4 style="font-size: 2rem;">A simpler Shopping experience for a simpler life.</h4>
<button class="btn--text btn--scroll-to">Learn more ↓</button>
<img
src="assests/shopping-cart-image.png"
class="header__img"
alt="Minimalist shop cart"
/>
</div>
</header>
<!-- sections -->
<section class="section" id="section--1">
<div class="section__title">
<h2 class="section__description">Features</h2>
<h3 class="section__header">
Everything you need in a modern Shopping site and more.
</h3>
</div>
<div class="features">
<img
src="assests/delivery1.webp"
data-src="assests/delivery1.webp"
alt="Computer"
class="features__img lazy-img"
/>
<div class="features__feature">
<div class="features__icon">
<svg>
<img src="assests/payment.svg" alt="payment_logo_min" style="transform:scale(0.8)">
</svg>
</div>
<h5 class="features__header">Online payments</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Unde alias
sint quos? Accusantium a fugiat porro reiciendis saepe quibusdam
debitis ducimus.
</p>
</div>
<div class="features__feature">
<div class="features__icon">
<svg>
<img src="assests/return.svg" alt="return_logo_min" style="transform:scale(0.8);filter:contrast(70%)">
</svg>
</div>
<h5 class="features__header">7 day Returns</h5>
<p>
Nesciunt quos autem dolorum voluptates cum dolores dicta fuga
inventore ab? Nulla incidunt eius numquam sequi iste pariatur
quibusdam!
</p>
</div>
<img
src="assests/return.webp"
data-src="assests/return.webp"
alt="Plant"
class="features__img lazy-img"
/>
<img
src="assests/Credit_Card.webp"
data-src="assests/Credit_Card.webp"
alt="Credit card"
class="features__img lazy-img"
style="height: 90%;"
/>
<div class="features__feature">
<div class="features__icon">
<svg>
<img src="assests/delivery.svg" alt="delivery_logo_min" style="transform:scale(0.8)">
</svg>
</div>
<h5 class="features__header">Free delivery</h5>
<p>
Quasi, fugit in cumque cupiditate reprehenderit debitis animi enim
eveniet consequatur odit quam quos possimus assumenda dicta fuga
inventore ab.
</p>
</div>
</div>
</section>
<!-- slider -->
<section class="section" id="section--2">
<div class="section__title section__title--testimonials">
<h2 class="section__description">Not sure yet?</h2>
<h3 class="section__header">
Check out some of the products.
</h3>
</div>
<div class="slider">
<div class="slide"><img src="assests/section1_logo.jpg" alt="Photo 1" /></div>
<div class="slide"><img src="img/img-2.jpg" alt="Photo 2" /></div>
<div class="slide"><img src="img/img-3.jpg" alt="Photo 3" /></div>
<div class="slide"><img src="img/img-4.jpg" alt="Photo 4" /></div>
<button class="slider__btn slider__btn--left">←</button>
<button class="slider__btn slider__btn--right">→</button>
<div class="dots"></div>
</div>
</section>
<footer class="footer" id="footer">
<ul class="footer__nav">
<li class="footer__item">
<a class="footer__link" href="#">About</a>
</li>
<li class="footer__item">
<a class="footer__link" href="#">Pricing</a>
</li>
<li class="footer__item">
<a class="footer__link" href="#">Terms of Use</a>
</li>
<li class="footer__item">
<a class="footer__link" href="#">Privacy Policy</a>
</li>
<li class="footer__item">
<a class="footer__link" href="#">Contact Us</a>
</li>
</ul>
<img src="assests/logo.png" alt="Logo" class="footer__logo" />
<ul class="footer__nav">
<li class="footer__item">
<a class="footer__link" href="https://github.com/Void-Monarch/" target="_blank"><img src="assests/github_logo.png" alt="gitlogo" class="gitlogo" />Void-Monarch</a>
</li>
<li class="footer__item">
<a class="footer__link" href="https://www.linkedin.com/in/harsh-parashar-54112024b/" target="_blank"><img src="assests/38669.png" alt="linklogo" class="linklogo" /> Harsh Parashar</a>
</li>
</ul>
</footer>
<!-- Modal window login -->
<div class="modal hidden">
<button class="btn--close-modal">×</button>
<h2 class="modal__header">
Open your bank account <br />
in just <span class="highlight">5 minutes</span>
</h2>
<form class="modal__form">
<label>First Name</label>
<input type="text" />
<label>Last Name</label>
<input type="text" />
<label>Email Address</label>
<input type="email" />
<button class="btn">Next step →</button>
</form>
</div>
<div class="overlay hidden"></div>
<script async src="script.js"></script>
</body>