-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
328 lines (325 loc) · 11.4 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Video Game Store</title>
<link rel="shortcut icon" type="image/" href="./favicon.ico" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/media-queries.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script src="scripts/script.js"></script>
</head>
<body>
<header>
<nav class="nav">
<ul class="nav-list">
<li><a href="#">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
<div class="logo">
<img class="logo-img" src="assets/img/logo.svg" alt="" />
</div>
<!--Cart (will use with JS as well)-->
<div class="cart" id="cart">
<i class="fa-solid fa-cart-shopping"></i>
<span class="badge">0</span>
</div>
</nav>
</header>
<!--Every product has a story-->
<section class="intro">
<div class="img-container">
<img src="assets/img/intro-pic.jpg" alt="" />
<!--Intro text-->
<div class="intro-text">
<h1 class="title">Every product has a story</h1>
<p class="subtitle">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<button class="view-btn">View More</button>
</div>
</div>
</section>
<!--Featured categories-->
<section class="featured">
<div class="featured-content">
<h1 class="feature-heading">Featured Categories</h1>
<div class="category-wrapper">
<!--Category 1-->
<div class="category-card">
<i class="fa-solid fa-camera category-icon"></i>
<p class="icon-subtitle">Category Name</p>
</div>
<!--Category 2-->
<div class="category-card">
<i class="fa-solid fa-anchor category-icon"></i>
<p class="icon-subtitle">Category Name</p>
</div>
<!--Category 3-->
<div class="category-card">
<i class="fa-solid fa-mug-hot category-icon"></i>
<p class="icon-subtitle">Category Name</p>
</div>
<!--Category 4-->
<div class="category-card">
<i class="fa-solid fa-feather category-icon"></i>
<p class="icon-subtitle">Category Name</p>
</div>
<!--Category 5-->
<div class="category-card">
<i class="fa-solid fa-compass category-icon"></i>
<p class="icon-subtitle">Category Name</p>
</div>
<!--Category 6-->
<div class="category-card">
<i class="fa-solid fa-location-arrow category-icon"></i>
<p class="icon-subtitle">Category Name</p>
</div>
</div>
<!--End of category wrapper-->
</div>
</section>
<!--Week Highlights-->
<section class="highlight-content">
<div class="highlight-heading">
<h1>This Week Highlights</h1>
<p class="subtitle-highlight">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam.
</p>
</div>
<!--Images underneath Week Highlights-->
<div class="img-splitter">
<div class="highlight-content__item">
<img class="highlight-img" src="assets/img/highlight1.jpg" alt="" />
<h5>Category</h5>
<a class="highlight-link" href="">Learn More</a>
</div>
<div class="highlight-content__item">
<img class="highlight-img" src="assets/img/highlight2.jpg" alt="" />
<h5>Category</h5>
<a class="highlight-link" href="">Learn More</a>
</div>
</div>
</section>
<!--Trending Products-->
<section class="trending">
<div class="trending-heading">
<h1>Trending Products</h1>
<p class="subtitle-trending">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur
incidunt cum deserunt! Fugit a non sunt eaque nisi reiciendis vel.
</p>
</div>
<div class="product-wrapper">
<!--Listing 1-->
<div class="listing">
<div class="listing-img">
<img src="assets/img/trending1.jpg" alt="" />
</div>
<h6>Product Name</h6>
<p class="price">Price</p>
</div>
<!--Listing 2-->
<div class="listing">
<div class="listing-img">
<img src="assets/img/trending2.jpg" alt="" />
</div>
<h6>Product Name</h6>
<p class="price">Price</p>
</div>
<!--Listing 3-->
<div class="listing">
<div class="listing-img">
<img src="assets/img/trending3.jpg" alt="" />
</div>
<h6>Product Name</h6>
<p class="price">Price</p>
</div>
</div>
<!--End of product wrapper-->
<button class="product-btn">View All Products</button>
</section>
<!--Inspiring Products-->
<section class="inspiring">
<div class="img-container">
<img src="assets/img/inspiring.jpg" alt="" />
<!--Intro text-->
<div class="intro-text__inspiring">
<h1 class="title">Inspiring products for your life</h1>
<p class="subtitle-inspiring">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<button class="view-btn">View More</button>
</div>
</div>
</section>
<!--Sale This week-->
<section class="sales">
<div class="sales-heading">
<h1>On Sale This Week</h1>
<p class="subtitle-sales">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam.
</p>
</div>
<!--Products-->
<!--2 big products-->
<div class="product-wrapper">
<!--Listing 1-->
<div class="listing">
<div class="listing-img__main">
<img src="assets/img/trending1.jpg" alt="" />
</div>
<h6>Product Name</h6>
<p class="price">Price</p>
</div>
<!--Listing 2-->
<div class="listing">
<div class="listing-img__main">
<img src="assets/img/trending2.jpg" alt="" />
</div>
<h6>Product Name</h6>
<p class="price">Price</p>
</div>
</div>
<!--Regular products-->
<div class="product-wrapper">
<!--Listing 1-->
<div class="listing">
<div class="listing-img">
<img src="assets/img/trending1.jpg" alt="" />
</div>
<h6>Product Name</h6>
<p class="price">Price</p>
</div>
<!--Listing 2-->
<div class="listing">
<div class="listing-img">
<img src="assets/img/trending2.jpg" alt="" />
</div>
<h6>Product Name</h6>
<p class="price">Price</p>
</div>
<!--Listing 3-->
<div class="listing">
<div class="listing-img">
<img src="assets/img/trending3.jpg" alt="" />
</div>
<h6>Product Name</h6>
<p class="price">Price</p>
</div>
</div>
<button class="view-btn">View All Products</button>
</section>
<!--Product Spotlight-->
<section class="spotlight">
<h1>Product Spotlight</h1>
<div class="spotlight-content">
<video class="video" src="assets/video/video.mp4" controls></video>
<p class="video-subtitle">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam voluptua. At.
</p>
<button class="view-btn">Start Shopping</button>
</div>
</section>
<!--Product news-->
<section class="news">
<div class="news-heading">
<h1>Product News</h1>
<p class="subtitle-news">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam.
</p>
</div>
<div class="news-wrap">
<div class="news-story">
<div class="news-img">
<img src="assets/img/product-news1.jpg" alt="" />
</div>
<h6 class="categorize">Category Name | Date</h6>
<h3>Lorem</h3>
<p class="subtitle-news">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Eius non
similique neque iusto cum optio, veritatis dolore molestiae numquam
facilis.
</p>
</div>
<div class="news-story">
<div class="news-img">
<img src="assets/img/product-news2.jpg" alt="" />
</div>
<h6 class="categorize">Category Name | Date</h6>
<h3>Lorem</h3>
<p class="subtitle-news">
Harum suscipit dolorum incidunt aut quos? Tempora quisquam, ad cum
odio, unde blanditiis dicta nobis ratione cumque eaque eligendi!
Reprehenderit?
</p>
</div>
<div class="news-story">
<div class="news-img">
<img src="assets/img/product-news3.jpg" alt="" />
</div>
<h6 class="categorize">Category Name | Date</h6>
<h3>Lorem</h3>
<p class="subtitle-news">
Sed, aliquid temporibus! Praesentium rerum maiores ratione, amet
quis modi facilis optio recusandae fugit dolores provident aperiam
iste ea. Quas.
</p>
</div>
</div>
<button class="view-btn">View All</button>
</section>
<!--Subscribe-->
<section class="subscribe">
<div class="btn-text__split">
<h1>Subscribe to our weekly newsletter</h1>
<button class="view-btn">Subscribe</button>
</div>
</section>
<!--Footer-->
<footer class="footer">
<div class="split">
<div class="footer-text">
<h5>Mockup Shop</h5>
<br />
<p class="footer-subtitle">
123 Mockup Street<br />
San Francisco, CA 10000 <br />(555) 555-555<br /><br />Copyright ©
Date Name. All rights reserved.
</p>
</div>
<div class="social-links">
<i class="fa-brands fa-facebook-f social-icon"></i>
<i class="fa-solid fa-envelope social-icon"></i
><i class="fa-brands fa-twitter social-icon"></i>
<i class="fa-brands fa-instagram social-icon"></i>
</div>
</div>
</footer>
</body>
</html>