-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.html
More file actions
287 lines (270 loc) · 11.6 KB
/
products.html
File metadata and controls
287 lines (270 loc) · 11.6 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Products - Finnwick</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="products.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<img class="logo" src="./Assets/Logo.png" alt="Finnwick Logo">
<form id="product-search-form" class="search-bar">
<input type="text" id="product-search-input" placeholder="Search products...">
</form>
<div>
<button><a href="signup.html"><img src="./Assets/Login.svg" alt="Login"></a></button>
<div class="menu">
<img src="./Assets/Menu.svg" alt="Menu" id="menu-toggle">
</div>
</div>
</header>
<div class="mobile-menu" id="mobile-menu">
<div class="menu-header">
<button class="close-menu" id="close-menu">✕</button>
</div>
<nav class="menu-items">
<a href="index.html" class="menu-item">
<img src="./Assets/Vector.png" alt="Home">
<div class="menu-text">Home</div>
</a>
<a href="trending.html" class="menu-item">
<img src="./Assets/Vector(1).png" alt="What's New">
<div class="menu-text">What's New</div>
</a>
<a href="checkout.html" class="menu-item">
<img src="./Assets/Vector(2).png" alt="My List">
<div class="menu-text">my list</div>
</a>
<a href="products.html" class="menu-item">
<img src="./Assets/Group.png" alt="Shop">
<div class="menu-text">shop</div>
</a>
<a href="aboutus.html" class="menu-item">
<img src="./Assets/Vector(3).png" alt="About Us">
<div class="menu-text">about us</div>
</a>
<a href="contactus.html" class="menu-item">
<img src="./Assets/Vector(4).png" alt="Help Center">
<div class="menu-text">help center</div>
</a>
</nav>
</div>
<section class="featured-artx">
<div class="artx-container">
<div class="artx-image">
<img src="./Assets/Robot.jpg" alt="ARTX_2000 Robot">
</div>
<div class="artx-details">
<h2>ARTX_2000</h2>
<p class="artx-pre-order">PRE-ORDER</p>
<div class="product-buttons">
<button class="artx-cart-btn add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
</div>
</section>
<section class="products-container">
<div class="products-header">
<h1>All Products</h1>
<p>
Explore our complete collection of smart home devices designed to make your life easier.
From security to comfort, Finnwick has everything you need to create the perfect connected home.
</p>
</div>
<div class="products-grid">
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(3).png" alt="Smart Appliances">
</div>
<div class="product-details">
<h3>Smart Appliances</h3>
<p class="product-price">$300</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(7).png" alt="B3 Chip">
</div>
<div class="product-details">
<h3>B3 Chip</h3>
<p class="product-price">$500</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Robot.jpg" alt="AI Home Software">
</div>
<div class="product-details">
<h3>ARTX_1000</h3>
<p class="product-price">$1400</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(2).png" alt="Voice Assistant">
</div>
<div class="product-details">
<h3>Voice Assistant</h3>
<p class="product-price">$100</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(10).png" alt="Smart Bulbs">
</div>
<div class="product-details">
<h3>Smart Bulbs</h3>
<p class="product-price">$30</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(11).png" alt="Smart Coffee Maker">
</div>
<div class="product-details">
<h3>Smart Coffee Maker</h3>
<p class="product-price">$80</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image.png" alt="Smart Camera">
</div>
<div class="product-details">
<h3>smart camera</h3>
<p class="product-price">$180</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(1).png" alt="Smart Lock">
</div>
<div class="product-details">
<h3>smart lock</h3>
<p class="product-price">$150</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(2).png" alt="Smart Speaker">
</div>
<div class="product-details">
<h3>smart speaker</h3>
<p class="product-price">$100</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(9).png" alt="Smart Lightning">
</div>
<div class="product-details">
<h3>smart microphone</h3>
<p class="product-price">$100</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(4).png" alt="Robot Vacuum">
</div>
<div class="product-details">
<h3>robot vacuum</h3>
<p class="product-price">$150</p>
<p class="special-note">this price until june 2</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
<div class="product-item">
<div class="product-image">
<img src="./Assets/Image(5).png" alt="Thermostat">
</div>
<div class="product-details">
<h3>Thermostats</h3>
<p class="product-price">$120</p>
</div>
<div class="product-buttons">
<button class="add-to-cart">Add to cart</button>
<button class="save-to-list">Save to list</button>
</div>
</div>
</div>
</section>
<footer>
<div>
<h3 class="shop-title">FINNWICK</h3>
<div class="social-media">
<a href="https://facebook.com" target="_blank"><img src="./Assets/Facebook.svg" alt="Facebook"></a>
<a href="https://linkedin.com" target="_blank"><img src="./Assets/LinkedIn.svg" alt="LinkedIn"></a>
<a href="https://youtube.com" target="_blank"><img src="./Assets/Youtube.svg" alt="YouTube"></a>
<a href="https://instagram.com" target="_blank"><img src="./Assets/Insta.svg" alt="Instagram"></a>
</div>
</div>
<div class="footer-container">
<div>
<p class="first">Customer Support</p>
<p><a href="contactus.html">Contact Us</a></p>
<p><a href="aboutus.html">Help Center / FAQ</a></p>
<p><a href="announcements.html">Shipping & Delivery</a></p>
</div>
<div>
<p class="first">Information</p>
<p><a href="aboutus.html">About Us</a></p>
<p><a href="announcements.html">Our Blog</a></p>
<p><a href="announcements.html">Privacy Policy</a></p>
</div>
<div>
<p class="first">Shop</p>
<p><a href="products.html">All Products</a></p>
<p><a href="trending.html">New Arrivals</a></p>
<p><a href="checkout.html">Checkout</a></p>
</div>
</div>
</footer>
</body>
</html>