-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
259 lines (250 loc) · 11.3 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>.Sneakers Store</title>
<meta name="description" content=".sneakers is a full responsive ecommerce store application">
<meta name="author" content="Albert Deutou">
<link rel="shortcut icon" href="assets/img/logo_sneakers.ico" type="image/x-icon">
</head>
<body>
<nav id="nav">
<div class="navTop">
<div class="navItem">
<img src="assets/img/sneakers.png" alt="">
</div>
<div class="navItem">
<div class="search">
<input type="text" placeholder="Search..." class="searchInput">
<img src="assets/img/search.png" alt="" width="20" height="20" class="searchIcon">
</div>
</div>
<div class="navItem">
<span class="limitedOffer">Limited Offer!</span>
</div>
</div>
<div class="navBottom">
<h3 class="menuItem">AIR FORCE</h3>
<h3 class="menuItem">JORDAN</h3>
<h3 class="menuItem">BLAZER</h3>
<h3 class="menuItem">CRATER</h3>
<h3 class="menuItem">HIPPIE</h3>
</div>
</nav>
<!-- Slider -->
<div class="slider">
<div class="sliderWrapper">
<div class="sliderItem">
<img src="assets/img/air.png" alt="" class="sliderImg">
<div class="sliderBg"></div>
<h1 class="sliderTitle">AIR FORCE</br> New</br> SEASON</h1>
<h2 class="sliderPrice">119€</h2>
<a href="#product">
<button class="buyButton">BUY NOW!</button>
</a>
</div>
<div class="sliderItem">
<img src="assets/img/jordan.png" alt="" class="sliderImg">
<div class="sliderBg"></div>
<h1 class="sliderTitle">AIR JORDAN</br> New</br> SEASON</h1>
<h2 class="sliderPrice">149€</h2>
<a href="#product">
<button class="buyButton">BUY NOW!</button>
</a>
</div>
<div class="sliderItem">
<img src="assets/img/blazer.png" alt="" class="sliderImg">
<div class="sliderBg"></div>
<h1 class="sliderTitle">BLAZER</br> New</br> SEASON</h1>
<h2 class="sliderPrice">109€</h2>
<a href="#product">
<button class="buyButton">BUY NOW!</button>
</a>
</div>
<div class="sliderItem">
<img src="assets/img/crater.png" alt="" class="sliderImg">
<div class="sliderBg"></div>
<h1 class="sliderTitle">CRATER</br> New</br> SEASON</h1>
<h2 class="sliderPrice">129€</h2>
<a href="#product">
<button class="buyButton">BUY NOW!</button>
</a>
</div>
<div class="sliderItem">
<img src="assets/img/hippie.png" alt="" class="sliderImg">
<div class="sliderBg"></div>
<h1 class="sliderTitle">HIPPIE</br> New</br> SEASON</h1>
<h2 class="sliderPrice">99€</h2>
<a href="#product">
<button class="buyButton">BUY NOW!</button>
</a>
</div>
</div>
</div>
<!-- Features Component-->
<div class="features">
<div class="feature">
<img src="assets/img/shipping.png" alt="" class="featureIcon">
<span class="featureTitle">FREE SHIPPING</span>
<span class="featureDesc">Free worldwide shipping on all orders.</span>
</div>
<div class="feature">
<img src="assets/img/return.png" alt="" class="featureIcon">
<span class="featureTitle">30 DAYS RETURN</span>
<span class="featureDesc">No question return and easy refund in 14 days.</span>
</div>
<div class="feature">
<img src="assets/img/gift.png" alt="" class="featureIcon">
<span class="featureTitle">GIFT CARDS</span>
<span class="featureDesc">Buy gift cards and use coupon codes easily.</span>
</div>
<div class="feature">
<img src="assets/img/contact.png" alt="" class="featureIcon">
<span class="featureTitle">CONTACT US!</span>
<span class="featureDesc">Keep in touch via email and support system.</span>
</div>
</div>
<!-- Product Component-->
<div class="product" id="product">
<img src="assets/img/air.png" alt="" class="productImg">
<div class="productDetails">
<h1 class="productTitle">AIR FORCE</h1>
<h2 class="productPrice">119€</h2>
<p class="productDesc">
The original Air Jordan 1 was released in 1985, and borrowed some aspects of the AF1's Air technology.
The Jordan midsole is much thinner, and more refined, which makes it lighter and better for playing in. The original Air
Jordan also had some upper modifications, to make it more stable and more durable.
</p>
<div class="colors">
<div class="color"></div>
<div class="color"></div>
</div>
<div class="sizes">
<div class="size">42</div>
<div class="size">43</div>
<div class="size">44</div>
</div>
<button class="productButton">BUY NOW!</button>
</div>
<!-- Payment Component-->
<div class="payment">
<h1 class="payTitle">Personal Information</h1>
<label>Name and Surname</label>
<input type="text" placeholder="John Doe" class="payInput">
<label>Phone Number</label>
<input type="text" placeholder="+49 000 000 000 00" class="payInput">
<label>Address</label>
<input type="text" placeholder="Berlinerstr.8, 30159 Hannover" class="payInput">
<h1 class="payTitle">Card Information</h1>
<div class="carIcons">
<img src="assets/img/visa.png" alt="" width="40" class="cardIcon">
<img src="assets/img/master.png" alt="" width="40" class="cardIcon">
</div>
<input type="password" placeholder="Card Number" class="payInput">
<div class="cardInfo">
<input type="text" placeholder="mm" class="payInput sm">
<input type="text" placeholder="yyyy" class="payInput sm">
<input type="text" placeholder="cvv" class="payInput sm">
</div>
<button class="payButton">Checkout</button>
<span class="close">X</span>
</div>
</div>
<!-- Gallery Component-->
<div class="gallery">
<div class="galleryItem">
<h1 class="galleryTitle">Be Yourself!</h1>
<img src="https://images.pexels.com/photos/9295809/pexels-photo-9295809.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500"
alt="" class="galleryImg">
</div>
<div class="galleryItem">
<img src="https://images.pexels.com/photos/9869141/pexels-photo-9869141.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500"
alt="" class="galleryImg">
<h1 class="galleryTitle">First Day of Your New Life</h1>
</div>
<div class="galleryItem">
<h1 class="galleryTitle">Just Do it!</h1>
<img src="https://images.pexels.com/photos/3490360/pexels-photo-3490360.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500"
alt="" class="galleryImg">
</div>
</div>
<div class="newSeason">
<div class="nsItem">
<img src="https://images.pexels.com/photos/4753986/pexels-photo-4753986.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500"
alt="" class="nsImg">
</div>
<div class="nsItem">
<h3 class="nsTitleSm">WINTER NEW ARRIVALS</h3>
<h1 class="nsTitle">New Season</h1>
<h1 class="nsTitle">New Collection</h1>
<a href="#nav">
<button class="nsButton">CHOOSE YOUR STYLE</button>
</a>
</div>
<div class="nsItem">
<img src="https://images.pexels.com/photos/7856965/pexels-photo-7856965.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500"
alt="" class="nsImg">
</div>
</div>
<!-- Footer Component-->
<footer>
<div class="footerLeft">
<div class="footerMenu">
<h1 class="fMenuTitle">About Us</h1>
<ul class="fList">
<li class="fListItem">Company</li>
<li class="fListItem">Contact</li>
<li class="fListItem">Careers</li>
<li class="fListItem">Affiliates</li>
<li class="fListItem">Stores</li>
</ul>
</div>
<div class="footerMenu">
<h1 class="fMenutitle">Useful Links</h1>
<ul class="fList">
<li class="fListItem">Support</li>
<li class="fListItem">Refund</li>
<li class="fListItem">FAQ</li>
<li class="fListItem">Feedback</li>
<li class="fListItem">Stories</li>
</ul>
</div>
<div class="footerMenu">
<h1 class="fMenutitle">Products</h1>
<ul class="fList">
<li class="fListItem">Air Force</li>
<li class="fListItem">Air Jordan</li>
<li class="fListItem">Blazer</li>
<li class="fListItem">Crater</li>
<li class="fListItem">Hippie</li>
</ul>
</div>
</div>
<div class="footerRight">
<div class="footerRightMenu">
<h1 class="fMenuTitle">Subscribe to our newsletter</h1>
<div class="fMail">
<input type="text" placeholder="your@email.com" class="fInput">
<button class="fButton">Join!</button>
</div>
</div>
<div class="footerRightMenu">
<h1 class="fMenuTitle">Follow Us</h1>
<div class="fIcons">
<i class="fa-brands fa-facebook-square fIcon"></i>
<i class="fa-brands fa-twitter-square fIcon"></i>
<i class="fa-brands fa-instagram-square fIcon"></i>
<i class="fa-brands fa-whatsapp-square fIcon"></i>
</div>
</div>
<div class="footerRightMenu">
<span class="copyright">@ADN. All rights reserved. 2022.</span>
</div>
</div>
</footer>
<script src="assets/js/app.js"></script>
</body>
</html>