-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
98 lines (91 loc) · 3.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<title>Nike Webstore</title>
</head>
<body>
<nav class="nav">
<div class="logo"><img src="images/logo.svg" alt="Nike Logo"></div>
<div class="dropdown">
<i class="fas fa-chevron-down"></i>
<ul class="nav-list">
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#products">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#promotions">Promotions</a>
</li>
</ul>
</div>
</nav>
<!-- <div class="space">
</div> -->
<header class="hero">
<p class="tagline">Just buy it.</p>
</header>
<section id="about" class="section section-about">
<h2 class="section-heading">
<span>About</span>
</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad omnis repellendus provident, atque a, consequuntur saepe vel, accusamus veritatis, vitae maxime aliquam ex. Est, natus! Fuga velit vitae officiis earum.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Non ipsum asperiores esse dolore, sequi fugiat nostrum quisquam mollitia, dolores possimus, similique beatae! Veniam laboriosam tempore, rerum officia, voluptatem sunt quo.
</p>
</section>
<section id="products" class="section section-products">
<h2 class="section-heading">
<span>Products</span>
</h2>
<div class="all-products">
<figure class="product">
<img class="product-image" src="images/flyknit.jpg" alt="Nike Flyknit">
<figcaption class="product-details">
<h6 class="product-title">Nike Flyknit</h6>
<span class="product-price">$199.99</span>
</figcaption>
</figure>
<figure class="product">
<img class="product-image" src="images/airmax.jpg" alt="Nike Airmax">
<figcaption class="product-details">
<h6 class="product-title">Nike Airmax</h6>
<span class="product-price">$349.99</span>
</figcaption>
</figure>
<figure class="product">
<img class="product-image" src="images/lebron.jpg" alt="Nike Lebron">
<figcaption class="product-details">
<h6 class="product-title">Nike Lebron</h6>
<span class="product-price">$299.99</span>
</figcaption>
</figure>
<figure class="product">
<img class="product-image" src="images/airjordan.jpg" alt="Nike Air Jordan">
<figcaption class="product-details">
<h6 class="product-title">Nike Air Jordan</h6>
<span class="product-price">$49.99</span>
</figcaption>
</figure>
</div>
</section>
<section id="promotions" class="section section-promotions">
<h2 class="section-heading">
<span>Promotions</span>
</h2>
<p>Buy now! Hot deal today</p>
</section>
<footer>
Made with love in Toronto
</footer>
</body>
</html>