-
Notifications
You must be signed in to change notification settings - Fork 0
/
productDetail.html
113 lines (106 loc) · 4.39 KB
/
productDetail.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
<!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">
<title>Product Details</title>
<link rel="stylesheet" href="productDetails.css">
<link rel="icon" type="image/png" sizes="32x32" href="https://i.ibb.co/zmz8Ybw/favicon-32x32.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<div>
<div id="navbar">
<div>
<img src="https://shop.indiamart.com/style/im_logo.jpg" alt="Logo img">
<p>shopping</p>
</div>
<div>
<h4>Shop</h4>
<input type="text" name="" id="search-bar" placeholder="What are you looking for?">
</div>
<div>
<img src="https://cdn-icons-png.flaticon.com/512/482/482631.png" alt="">
<p>Search</p>
</div>
<div>
<p>Post Bulk Requirement </p>
<p> (For large quantities) </p>
</div>
</div>
<div id="main">
<div class="item header">
<a href="http://127.0.0.1:5500/India-mart-clone/shopping.html">Home</a>
<p>
/
</p>
<p>
Men Pathani Kurta
Beige
</p>
<p>
/
</p>
<p> Solid Kurta</p>
</div>
<div class="item images">
<div>
<img src="https://5.imimg.com/data5/ECOM/Default/2022/2/ZP/DW/XM/5444595/4-07a0cea3-4c6e-41c1-9ad5-f0bc22708fe0-1000x1000.jpg"
alt="">
</div>
<div>
<img src="https://5.imimg.com/data5/ECOM/Default/2022/2/RF/WP/KR/5444595/10-799bd6eb-26b8-4fd5-b251-ce43761579eb-500x500.jpg"
alt="">
</div>
<div>
<img src="https://5.imimg.com/data5/ECOM/Default/2022/2/BX/TZ/VD/5444595/9-c4876c14-352e-4651-bae4-933bd01c53d2-500x500.jpg"
alt="">
</div>
<div>
<img src="https://5.imimg.com/data5/ECOM/Default/2022/2/EM/TB/BR/5444595/8-e4bb1705-958f-4d37-8bb0-585bc918e974-500x500.jpg"
alt="">
</div>
<div>
<img src="https://5.imimg.com/data5/ECOM/Default/2022/2/UJ/LD/VR/5444595/7-05a2ee68-4ca7-49cd-8222-43b01ec9c173-500x500.jpg"
alt="">
</div>
</div>
<div class="item image">
<div><img
src="https://5.imimg.com/data5/ECOM/Default/2022/2/ZP/DW/XM/5444595/4-07a0cea3-4c6e-41c1-9ad5-f0bc22708fe0-1000x1000.jpg"
alt=""></div>
</div>
<div class="item name">
<p>Beige Solid Kurta</p>
<p>Guniaa</p>
</div>
<div class="item price">
<div>
<p>₹ 1,099</p>
<i style="position: absolute; top:290px; left:860px" class="fa-solid fa-tag"></i>
<a style="margin-left: 18px;" href="address.html">Shop Now</a>
</div>
</div>
<div class="item button">
<div> <a href="address.html">Buy Now</a></div>
<p>You will be redirected to the 3rd party webstore</p>
</div>
<div class="item details">
<hr>
<h3>Details</h3>
<p>Size</p>
<p>SKU : GGMKC0011_L</p>
<p>Weight : 200 g</p>
<p>The Solid Cotton Kurta is an ethinic wear from GUNIAA for special occassions, where you want to look
the
best. The cotton rich lightweight, soft and skin friendly Kurtas will enhance your personalities and
make you feel comfortable on weding functions, festive occassions, family get togethers, social
gatherings, casual outings etc. It is a knee length ethinic wear and all climate friendly.</p>
</div>
</div>
</div>
</div>
</body>
<script src="productDetails.js"></script>
</html>