forked from nomadcoders/scss-masterclass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (81 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="dist/css/reset.css" />
<link rel="stylesheet" href="dist/css/styles.css" />
<title>(S)CSS Masterclass</title>
</head>
<body>
<header>
<nav>
<ul>
<li>Search</li>
<li>Won Hundred</li>
<li>Shopping Bag (0)</li>
<li>Journal</li>
<li>Women</li>
<li>Men</li>
<li>Currency</li>
</ul>
</nav>
</header>
<main>
<h1>Spring Summer – Volume 2</h1>
<h6>
Get your wardrobe ready for those upcoming warm spring days with our
second delivery of Spring Summer 20.
</h6>
<div class="hero">
<div class="hero__img"></div>
<div class="hero__img"></div>
<div class="hero__img"></div>
<div class="hero__img"></div>
</div>
<section class="arrivals">
<h4 class="arrivals__title">
Selected New Arrivals
</h4>
<div class="wrapper">
<article class="product">
<div class="product__photo"></div>
<div class="product__data">
<span class="name">Jonah Shirt - Zen Blue</span>
<span class="price">900 DKK</span>
</div>
</article>
<article class="product">
<div class="product__photo"></div>
<div class="product__data">
<span class="name">Jonah Shirt - Zen Blue</span>
<span class="price">900 DKK</span>
</div>
</article>
<article class="product">
<div class="product__photo"></div>
<div class="product__data">
<span class="name">Jonah Shirt - Zen Blue</span>
<span class="price">900 DKK</span>
</div>
</article>
<article class="product">
<div class="product__photo"></div>
<div class="product__data">
<span class="name">Jonah Shirt - Zen Blue</span>
<span class="name">900 DKK</span>
</div>
</article>
<span class="arrivals__category">Shop Women's New Arrivals</span>
<span class="arrivals__category">Shop Men's New Arrivals</span>
</div>
</section>
</main>
<footer>
<div></div>
<div></div>
<div></div>
<div></div>
</footer>
</body>
</html>