-
Notifications
You must be signed in to change notification settings - Fork 0
/
index7.html
143 lines (128 loc) · 5.67 KB
/
index7.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fontawesome.com/v5/icons/chevron-right?s=solid&f=classic">
<script src="https://kit.fontawesome.com/40a89b9b78.js" crossorigin="anonymous">
</script>
</head>
<body>
<div class="container">
<div class="box one">
<span class="shop">
SHOP
</span>
<span class="lane">
LANE
</span>
</div>
<div class="box two">
<ul class="list-items">
<li class="item home"><a href="./index.html" style="text-decoration:none ">Home</a> </li>
<li class="item cloth"><a href="#clothing">CLOTHINGS</a></li>
<li class="item accessories"><a href="#accessories">ACCESSORIES</a></li>
</ul>
</div>
<div class="box three">
<div class="font search">
<button class="btn"><i class="fas fa-search"></i></button>
</div>
<div class="font cart">
<button class="btn"><i class="fas fa-cart-shopping"></i></button>
</div>
<div class="font user">
<button class="btn"><i class="fas fa-user"></i></button>
</div>
</div>
</div>
<div class="targetPage">
<div class="detailImg">
<img src="https://assets.myntassets.com/h_1440,q_100,w_1080/v1/assets/images/productimage/2019/2/23/dc05b5e5-aa82-493e-bf0b-0c309baf21021550920383101-1.jpg"
alt="" class="zoom">
</div>
<div class="productDescription">
<h1 id="name">
Unisex Black & Green Reflex 2.0 Smart Band</h1>
<h4 id="brand">Fastrack</h4>
<h3>Price: Rs <span id="price">1999</span></h3>
<div class="description">
<h3>Description</h3>
<p id="description">he new Fastrack Reflex 2.0 Activity Tracker comes with all the features one could
ask for! It comes in three colours that you can use to accentuate your athleisure, casual or party
attire. Not only does it look uber cool in this cool grey & electric blue accent, further the TPU
(Thermoplastic Polyurethane) strap ensures it gives you a snugfit while staying light on your wrist!
</p>
</div>
<div class="product-preview">
<h3>Product Preview</h3>
<div class="previewImg">
<img id="img0" class="active"
src="https://assets.myntassets.com/h_1440,q_100,w_1080/v1/assets/images/productimage/2019/2/23/dc05b5e5-aa82-493e-bf0b-0c309baf21021550920383101-1.jpg"
alt="">
<img id="img1"
src="https://assets.myntassets.com/h_1440,q_100,w_1080/v1/assets/images/productimage/2019/2/23/1d9bda95-b63e-4312-bbfa-c25b377c96c21550920383126-2.jpg"
alt="" class="">
<img id="img2"
src="https://assets.myntassets.com/h_1440,q_100,w_1080/v1/assets/images/productimage/2019/2/23/2261262d-8f2f-4451-9584-9d0cb90e48cf1550920383155-3.jpg"
alt="" class="">
<img id="img3"
src="https://assets.myntassets.com/h_1440,q_100,w_1080/v1/assets/images/productimage/2019/2/23/2261262d-8f2f-4451-9584-9d0cb90e48cf1550920383155-3.jpg"
alt="" class="">
<img id="img4"
src="https://assets.myntassets.com/h_1440,q_100,w_1080/v1/assets/images/productimage/2019/2/23/dc05b5e5-aa82-493e-bf0b-0c309baf21021550920383101-1.jpg"
alt="" class="">
</div>
</div>
<div class="cart"><button class="cartBtn">Add To Cart</button></div>
</div>
</div>
<div class="footer">
<div class="footer-box">
<ul class="online-store">
<li>
<h3>Online Store</h3>
</li>
<li><a href="#">Men Clothing</a></li>
<li><a href="#">Women Clothing</a></li>
<li><a href="#">Men Accessories</a></li>
<li><a href="#">Women Accessories</a></li>
</ul>
</div>
<div class="footer-box">
<ul class="helpful-links">
<li>
<h3>Helpful Links</h3>
</li>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-box">
<ul class="patners">
<li>
<h3>Patners</h3>
</li>
<li><a href="#">Zara</a></li>
<li><a href="#">Pantaloons</a></li>
<li><a href="#">Levis</a></li>
<li><a href="#">Ucb</a></li>
<li><a href="#">+ Many More</a></li>
</ul>
</div>
<div class="footer-box">
<ul class="address">
<li>
<h3>Address</h3>
</li>
<li>Building 101</li>
<li>Central Avenue</li>
<li>LA - 902722</li>
<li>United States</li>
</ul>
</div>
</div>
</body>
</html>