-
Notifications
You must be signed in to change notification settings - Fork 0
/
product7.html
346 lines (314 loc) · 20.8 KB
/
product7.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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
<!DOCTYPE html>
<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">
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" integrity="sha256-h20CPZ0QyXlBuAw7A+KluUYx/3pK+c7lYEpqLTlxjYQ=" crossorigin="anonymous" />
<!-- Fonts -->
<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=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Custom CSS file -->
<link rel="stylesheet" href="/style.css">
<title>DeliX - Fast, Cheap, Innovative</title>
</head>
<body>
<!-------------------
Header Start
--------------------->
<header id="header">
<!--------------------
Primary Navigation
---------------------->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark color-primary-bg" style="background-color: white; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;">
<a class="navbar-brand font-montserrat " href="#" style="color: #000; font-size: 1.7rem; margin-left: 5%;"><i style="padding: 7px; font-size: 1.4rem; color: rgb(63, 63, 63);" class="fas fa-truck"></i>DeliX</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav m-auto font-montserrat" >
<li class="nav-item">
<a class="nav-link font-poppins" href="index.html" style="color: #000; font-size: 1.2rem; font-family: Montserrat; padding-right: 20px;">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#aboutsec" style="color: #000;font-size: 1.2rem; font-family: Montserrat; padding-right: 20px;">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#servicesec" style="color: #000;font-size: 1.2rem; font-family: Montserrat; padding-right: 20px;">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="productmenufinal.html" style="color: #000;font-size: 1.2rem; font-family: Montserrat; padding-right: 20px;">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#teamsec" style="color: #000;font-size: 1.2rem; font-family: Montserrat; padding-right: 20px;">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#contactsec" style="color: #000;font-size: 1.2rem; font-family: Montserrat; padding-right: 20px;">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="reviewredirect.html" style="color: #000;font-size: 1.2rem; font-family: Montserrat; padding-right: 20px;">Review</a>
</li>
</ul>
<div class="font-size-14; cursor: pointer;">
<span class="font-size-16 px-2 text-black my-cart-icon"><i class="fas fa-shopping-cart"></i>
</span>
</div>
</div>
</nav>
<!-----------------------
!Primary Navigation
------------------------->
</header>
<!-----------------
Header End
-------------------->
<!-------------------------
Product Details Start
---------------------------->
<section class="text-gray-600 body-font overflow-hidden" style="margin-bottom: 100px; margin-top: 70px; font-family: Montserrat;">
<div class="container px-5 py-24 mx-auto">
<div class="he">
<h2 class="titleservice" style="text-align: center; margin-bottom: 25px;">Product details</h2>
</div>
<div class="lg:w-4/5 mx-auto flex flex-wrap">
<img alt="ecommerce" class="lg:w-1/2 w-full lg:h-auto h-64 object-cover object-center rounded" src="assets/product7.jpg">
<div class="lg:w-1/2 w-full lg:pl-10 lg:py-6 mt-6 lg:mt-0">
<h2 class="text-sm title-font text-gray-500 tracking-widest">Samsung</h2>
<h1 class="text-gray-900 text-3xl title-font font-medium mb-1">Galaxy S21+ 5G</h1>
<div class="flex mb-4">
<span class="flex items-center">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 text-blue-500" viewBox="0 0 24 24">
<path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"></path>
</svg>
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 text-blue-500" viewBox="0 0 24 24">
<path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"></path>
</svg>
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 text-blue-500" viewBox="0 0 24 24">
<path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"></path>
</svg>
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 text-blue-500" viewBox="0 0 24 24">
<path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"></path>
</svg>
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 text-blue-500" viewBox="0 0 24 24">
<path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"></path>
</svg>
<span class="text-gray-600 ml-3">941 Reviews</span>
</span>
<span class="flex ml-3 pl-3 py-2 border-l-2 border-gray-200 space-x-2s">
<a class="text-gray-500">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="text-gray-500">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"></path>
</svg>
</a>
<a class="text-gray-500">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>
</a>
</span>
</div>
<p class="leading-relaxed">17.01 cm (6.7 inch) Dynamic AMOLED 2X Display <br>
FHD+ Resolution with 2400 x 1080 Pixels<br>
Android Pie v10.0 Operating System<br>
2.9 GHz Exynos 2100 Octa Core Processor<br>
4800 mAh Lithium-Ion Battery<br>
Memory Expandable Upto 1 TB<br></p>
<div class="flex mt-6 items-center pb-5 border-b-2 border-gray-100 mb-5">
<div class="flex">
<span class="mr-3">Color</span>
<button class="border-2 border-gray-300 rounded-full w-6 h-6 focus:outline-none"></button>
<button class="border-2 border-gray-300 ml-1 bg-gray-700 rounded-full w-6 h-6 focus:outline-none"></button>
<button class="border-2 border-gray-300 ml-1 bg-blue-500 rounded-full w-6 h-6 focus:outline-none"></button>
</div>
<div class="flex ml-6 items-center">
<span class="mr-3">Size</span>
<div class="relative">
<select class="rounded border appearance-none border-gray-300 py-2 focus:outline-none focus:ring-2 focus:ring-blue-200 focus:border-blue-500 text-base pl-3 pr-10">
<option>SM</option>
<option>M</option>
<option>L</option>
<option>XL</option>
</select>
<span class="absolute right-0 top-0 h-full w-10 text-center text-gray-600 pointer-events-none flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6"></path>
</svg>
</span>
</div>
</div>
<!-- product qty section -->
<div class="flex ml-6 items-center">
<span class="mr-3">Qty.</span>
<div class="relative">
<select class="rounded border appearance-none border-gray-300 py-2 focus:outline-none focus:ring-2 focus:ring-blue-200 focus:border-blue-500 text-base pl-3 pr-10">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
</select>
<span class="absolute right-0 top-0 h-full w-10 text-center text-gray-600 pointer-events-none flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6"></path>
</svg>
</span>
</div>
</div>
<!-- !product qty section -->
</div>
<div class="flex">
<span class="title-font font-medium text-2xl text-gray-900">₹70,000</span>
<button class="flex ml-5 text-white bg-blue-500 border-0 py-2 px-10 focus:outline-none hover:bg-blue-600 rounded">Add to Cart</button>
<button class="flex ml-5 text-white bg-blue-500 border-0 py-2 px-10 focus:outline-none hover:bg-blue-600 rounded">Buy Now</button>
</div>
</div>
</div>
</div>
</section>
<!-------------------------
Product Details End
---------------------------->
<div class="bg-white">
<div class="max-w-2xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:max-w-7xl lg:px-8">
<div class="he">
<h2 class="titleservice" style="text-align: center;">Products</h2>
</div>
<h2 class="" style="color: rgb(44, 43, 46); font-size: 3.5rem; margin-bottom: 50px; font-family: Montserrat; text-align: center; font-weight: 600;">You may also like..</h2>
<div class="grid grid-cols-1 gap-y-10 sm:grid-cols-2 gap-x-6 lg:grid-cols-3 xl:grid-cols-4 xl:gap-x-8" style="font-family: Montserrat;">
<div class="group">
<a href="product1.html">
<div class="w-full aspect-w-1 aspect-h-1 rounded-lg overflow-hidden xl:aspect-w-7 xl:aspect-h-8" style="height: 200px;">
<img src="assets/product1.png" style="width: 400px;" class="w-full h-full object-center object-cover group-hover:opacity-75">
</div>
<h3 class="mt-4 text-m text-gray-700">
Canon PowerShot Camera
</h3>
<p class="mt-1 text-lg font-medium text-gray-900">
₹22,000
</p>
</a>
<button onclick="window.location.href = 'productmenufinal.html'" class="btn btn-outline-dark font-size-12 mt-3 my-cart-btn">Add to Cart</button>
<!-- <button onclick="window.location.href = 'cart.html'" type="submit" class="btn btn-outline-dark font-size-12 mt-3">Add to Cart</button> -->
</div>
<div class="group">
<a href="product2.html">
<div class="w-full aspect-w-1 aspect-h-1 bg-gray-200 rounded-lg overflow-hidden xl:aspect-w-7 xl:aspect-h-8" >
<img src="assets/product2.jpg" class="w-full h-full object-center object-cover group-hover:opacity-75">
</div>
<h3 class="mt-4 text-m text-gray-700">
Go Pro Camera
</h3>
<p class="mt-1 text-lg font-medium text-gray-900">
₹34,000
</p>
</a>
<button onclick="window.location.href = 'productmenufinal.html'" class="btn btn-outline-dark font-size-12 mt-3 my-cart-btn">Add to Cart</button>
</div>
<div class="group">
<a href="product3.html">
<div class="w-full aspect-w-1 aspect-h-1 bg-gray-200 rounded-lg overflow-hidden xl:aspect-w-7 xl:aspect-h-8" style="height: 200px;">
<img src="assets/product3plus.jpg" class="w-full h-full object-center object-cover group-hover:opacity-75">
</div>
<h3 class="mt-4 text-m text-gray-700">
IdeaPad Slim 5
</h3>
<p class="mt-1 text-lg font-medium text-gray-900">
₹58,000
</p>
</a>
<button onclick="window.location.href = 'productmenufinal.html'" class="btn btn-outline-dark font-size-12 mt-3 my-cart-btn">Add to Cart</button>
</div>
<div class="group">
<a href="product4.html">
<div class="w-full aspect-w-1 aspect-h-1 bg-gray-200 rounded-lg overflow-hidden xl:aspect-w-7 xl:aspect-h-8" style="height: 200px;">
<img src="assets/product4.jpg" class="w-full h-full object-center object-cover group-hover:opacity-75">
</div>
<h3 class="mt-4 text-m text-gray-700">
Dell Inspiron 13
</h3>
<p class="mt-1 text-lg font-medium text-gray-900">
₹80,000
</p>
</a>
<button onclick="window.location.href = 'productmenufinal.html'" class="btn btn-outline-dark font-size-12 mt-3 my-cart-btn">Add to Cart</button>
</div>
<div class="group">
<a href="product5.html">
<div class="w-full aspect-w-1 aspect-h-1 bg-gray-200 rounded-lg overflow-hidden xl:aspect-w-7 xl:aspect-h-8" style="height: 200px;">
<img src="assets/product5.jpg" class="w-full h-full object-center object-cover group-hover:opacity-75">
</div>
<h3 class="mt-4 text-m text-gray-700">
Cannon Pixma
</h3>
<p class="mt-1 text-lg font-medium text-gray-900">
₹2,800
</p>
</a>
<button onclick="window.location.href = 'productmenufinal.html'" class="btn btn-outline-dark font-size-12 mt-3 my-cart-btn">Add to Cart</button>
</div>
<div class="group">
<a href="product6.html">
<div class="w-full aspect-w-1 aspect-h-1 rounded-lg overflow-hidden xl:aspect-w-7 xl:aspect-h-8" style="height: 200px;">
<img src="assets/product6.jpg" style="height: 200px;" class="w-full h-full object-center group-hover:opacity-75">
</div>
<h3 class="mt-4 text-m text-gray-700">
Boat Airdopes 201
</h3>
<p class="mt-1 text-lg font-medium text-gray-900">
₹1,700
</p>
</a>
<button onclick="window.location.href = 'productmenufinal.html'" class="btn btn-outline-dark font-size-12 mt-3 my-cart-btn">Add to Cart</button>
</div>
<div class="group">
<a href="product7.html">
<div class="w-full aspect-w-1 aspect-h-1 bg-gray-200 rounded-lg overflow-hidden xl:aspect-w-7 xl:aspect-h-8" style="height: 200px;">
<img src="assets/product7.jpg" class="w-full h-full object-center group-hover:opacity-75">
</div>
<h3 class="mt-4 text-m text-gray-700">
Galaxy S21+ 5G
</h3>
<p class="mt-1 text-lg font-medium text-gray-900">
₹70,000
</p>
</a>
<button onclick="window.location.href = 'productmenufinal.html'" class="btn btn-outline-dark font-size-12 mt-3 my-cart-btn">Add to Cart</button>
</div>
<div class="group">
<a href="product8.html">
<div class="w-full aspect-w-1 aspect-h-1 bg-gray-200 rounded-lg overflow-hidden xl:aspect-w-7 xl:aspect-h-8" style="height: 200px;">
<img src="assets/product8.jpg" class="w-full h-full object-center group-hover:opacity-75">
</div>
<h3 class="mt-4 text-m text-gray-700">
Redmi-9 64GB
</h3>
<p class="mt-1 text-lg font-medium text-gray-900">
₹9,000
</p>
</a>
<button onclick="window.location.href = 'productmenufinal.html'" class="btn btn-outline-dark font-size-12 mt-3 my-cart-btn">Add to Cart</button>
</div>
</div>
</div>
</div>
<!-----------------
Banner End
------------------->
<script src="index.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>