-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct-list.html
More file actions
180 lines (164 loc) · 6.1 KB
/
product-list.html
File metadata and controls
180 lines (164 loc) · 6.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product_list</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/responsive.css">
<link rel="stylesheet" href="style/style2.css">
</head>
<body>
<section class="header">
<section class="wrapper">
<div class="navtop_right">
<div class="nav_top">
<div class="navtop_center">
<p>
Summer Sale For All Swim Suits And Free Express Delivery - OFF
50%!
</p>
<a href="#">ShopNow</a>
</div>
<div class="navtop_right_content">
<h4 class="english">English</h4>
<a href="#"><img src="assets/Vector.svg" alt="arrow_down" /></a>
</div>
</div>
</div>
</section>
</section>
<section class="wrapper">
<nav class="navbar">
<input type="checkbox" id="check" />
<label for="check" class="checkbtn">
<i class="fa-solid fa-bars" id="bars"></i>
</label>
<h1 class="logo">Exclusive</h1>
<ul class="navbarul">
<li><a href="#">Home</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Sign Up</a></li>
</ul>
<ul class="header_right">
<li class="search">
<input
type="search"
placeholder="What are you looking for?"
name="search"
class="searched"
id="search_item"
onkeyup="search()"
/>
<span><img src="assets/search.svg" alt="search" /></span>
</li>
<li class="container">
<h1>
<a href="#"><img src="assets/heart.svg" alt="heart" /></a>
</h1>
</li>
<li class="container">
<h1>
<a href="#"
><img src="assets/cart.svg" alt="heart" class="cart"
/></a>
</h1>
</li>
</ul>
</nav>
</section>
<section class="home_products">
<section class="wrapper">
<p class="home_and">Home / <span class="span_products">Products</span></p>
</section>
</section>
<section id="product_1">
<section class="wrapper">
<div class="pro_products" id="products">
</div>
</section>
</section>
<section class="footer">
<section class="wrapper">
<section class="contents">
<div class="headings">
<div class="main">
<h2 class="logo_footer">Exclusive</h2>
<p class="subscribe">Subscribe</p>
<p class="off">Get 10% off your first order</p>
<div class="email">
<input type="email" placeholder="Enter your email" />
<a href="#"><img src="assets/Vector.png" alt="vector" /></a>
</div>
</div>
<div class="support main">
<h2 class="support text">Support</h2>
<ul>
<li>
<a href="#"
>111 Bijoy sarani, Dhaka, <br />\ DH 1515, Bangladesh.</a
>
</li>
<li><a href="#">+88015-88888-9999</a></li>
</ul>
</div>
<div class="account main">
<h2 class="account text">Account</h2>
<ul>
<li><a href="#">My Account</a></li>
<li><a href="#">Login / Register</a></li>
<li><a href="#">Cart</a></li>
<li><a href="#">Wishlist</a></li>
<li><a href="#">Shop</a></li>
</ul>
</div>
<div class="link main">
<h2 class="link text">Quick Link</h2>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms Of Use</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="download main">
<h2 class="download text">Download App</h2>
<p class="save">Save $3 with App New User Only</p>
<div class="scanner">
<img src="assets/Qrcode 1.png" alt="qr_code" />
<div class="appstore">
<img
src="assets/png-transparent-google-play-store-logo-google-play-app-store-android-wallets-text-label-logo.png"
alt="transparent_gpay"
/>
<img src="assets/download-appstore.png" alt="appsrore" />
</div>
</div>
<div class="logos">
<a href="#"><img src="assets/facebook.svg" alt="fb" /></a>
<a href="#"><img src="assets/twitter.svg" alt="twitter" /></a>
<a href="#"
><img src="assets/icon-instagram.svg" alt="insta"
/></a>
<a href="#"
><img src="assets/Icon-Linkedin.svg" alt="linkedin"
/></a>
</div>
</div>
</div>
</section>
</section>
</section>
<section class="section_copyright">
<div class="copyright">
<img src="assets/icon-copyright.png" alt="copyright" />
<p class="copyright_text">Copyright Rimel 2022. All right reserved</p>
</div>
</section>
<script src="./script/script2.js"></script>
</body>
</html>