-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
165 lines (147 loc) · 6.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
<title> Nike. Just Do It.</title>
</head>
<body>
<nav id="nav">
<div class="navTop">
<div class="navItem">
<img src="./images/logo1.png" width="50" height="50" alt="">
</div>
<div class="navItem">
<div class="search">
<input type="text" placeholder="Search..." class="searchInput">
<img src="./images/search1.png" width="20" height="20" alt="" class="searchIcon">
</div>
</div>
<div class="navItem">
<span class="oghere">THE OG IS HERE!</span>
</div>
</div>
<div class="navBottom">
<h3 class="menuItem">HOME</h3>
<h3 class="menuItem">FEATURES</h3>
<h3 class="menuItem">PRICING</h3>
<h3 class="menuItem">CONTACT US</h3>
</div>
</nav>
<div class="slider">
<div class="sliderWrapper">
<div class="sliderItem">
<img src="./images/sneak.png" alt="" class="sliderImg">
<div class="sliderBg"></div>
<h1 class="sliderTitle">AIR JORDAN</br> HIGH</br>OG</h1>
<h2 class="sliderPrice">Rs.9999</h2>
<a href="#product">
<button class="buyButton">BUY NOW!</button>
</a>
</div>
</div>
</div>
<div class="features">
<div class="feature">
<img src="./images/shipping.png" class="featureIcon">
<span class="featureTitle">FREE SHIPPING</span>
<span class="featureDesc">Free worldwide shipping on all orders.</span>
</div>
<div class="feature">
<img src="./images/images.png" class="featureIcon">
<span class="featureTitle">30 DAYS RETURN</span>
<span class="featureDesc">Easy and flexible returns and refunds.</span>
</div>
<div class="feature">
<img src="./images/logo1.png" class="featureIcon">
<span class="featureTitle">THE SWOOSH</span>
<span class="featureDesc">Get the exclusive premium swoosh membership.</span>
</div>
</div>
<div class="product" id="product">
<img src="./images/sneak.png" alt="" class="productImg">
<div class="productDetails">
<h1 class="productTitle">AIR JORDAN HIGH OG</h1>
<h2 class="productPrice">Rs.9999</h2>
<p class="productDesc">The Air Jordan 1 Retro High remakes the classic sneaker, giving you a fresh look with
a familiar feel. Premium materials with new colours and textures give modern expression to an all-time
favourite.
</p>
<div class="sizes">
<div class="size">UK 8</div>
<div class="size">UK 9</div>
<div class="size">UK 10</div>
</div>
<button class="productButton">BUY NOW !</button>
</div>
</div>
<div class="gallery">
<div class="galleryItem">
<h1 class="galleryTitle">Be part of HISTORY!</h1>
<img src="./images/adver.jpg" alt="" class="galleryImg">
</div>
<div class="galleryItem">
<img src="./images/jordan.jpg" alt="" class="galleryImg">
<h1 class="galleryTitle">BE LEGENDARY!</h1>
</div>
<div class="galleryItem">
<h1 class="galleryTitle">Just Do it!</h1>
<img src="./images/justdoit.jpg" alt="" class="galleryImg">
</div>
</div>
<footer>
<div class="footerLeft">
<div class="footerMenu">
<h1 class="fMenuTitle">Resources</h1>
<ul class="fList">
<li class="fListItem">Find a store</li>
<li class="fListItem">Become A Member</li>
<li class="fListItem">Send us Feedback</li>
</ul>
</div>
<div class="footerMenu">
<h1 class="fMenuTitle">Help</h1>
<ul class="fList">
<li class="fListItem">Get Help</li>
<li class="fListItem">Order Status</li>
<li class="fListItem">Delivery</li>
<li class="fListItem">Returns</li>
<li class="fListItem">Payment Options</li>
</ul>
</div>
<div class="footerMenu">
<h1 class="fMenuTitle">Company</h1>
<ul class="fList">
<li class="fListItem">About Nike </li>
<li class="fListItem">News</li>
<li class="fListItem">Careers</li>
<li class="fListItem">Investors</li>
<li class="fListItem">Sustainability</li>
</ul>
</div>
</div>
<div class="footerRight">
<div class="footerRightMenu">
<h1 class="fMenuTitle">Subscribe to the swoosh community</h1>
<div class="fMail">
<input type="text" placeholder="[email protected]" class="fInput">
<button class="fButton">Join!</button>
</div>
</div>
<div class="footerRightMenu">
<h1 class="fMenuTitle">Follow Us</h1>
<div class="fIcons">
<img src="./images/fb.png" alt="" class="fIcon">
<img src="./images/insta.png" alt="" class="fIcon">
<img src="./images/twitter.png" alt="" class="fIcon">
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>