-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchase.html
More file actions
87 lines (75 loc) · 2.84 KB
/
Copy pathchase.html
File metadata and controls
87 lines (75 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zeeab Varieties - Wholesales</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="main-header">
<div class="header-top">
<h1 class="logo">Zeeab Varieties</h1>
<div class="search-bar">
<input type="text" placeholder="Search for products...">
<button>Search</button>
</div>
<div class="cart">
<span>🛒 Cart: ₦0.00</span>
</div>
</div>
<nav class="category-nav">
<ul>
<li><a href="#">Beauty Products</a></li>
<li><a href="#">Fashion Bags</a></li>
<li><a href="#">Gadgets</a></li>
<li><a href="#">Kitchen Items</a></li>
<li><a href="#">Perfumes</a></li>
<li><a href="#">Watches</a></li>
</ul>
</nav>
</header>
<main>
<div class="toolbar">
<p>Showing all 29 results</p>
<select>
<option>Sort by latest</option>
<option>Sort by popularity</option>
<option>Sort by price: low to high</option>
</select>
</div>
<div class="product-grid">
<div class="product-card">
<div class="product-image">📦 Image</div>
<h3 class="product-title">Smart Water Dispenser</h3>
<div class="product-price">₦119,950.00</div>
<button class="add-to-cart">Add to cart</button>
</div>
<div class="product-card">
<div class="product-image">📦 Image</div>
<h3 class="product-title">Space Bottle</h3>
<div class="product-price">₦2,700.00</div>
<button class="add-to-cart">Add to cart</button>
</div>
<div class="product-card">
<div class="product-image">📦 Image</div>
<h3 class="product-title">Handy Cup (3pcs)</h3>
<div class="product-price">
<span class="old-price">₦3,500.00</span>
₦1,250.00
</div>
<button class="add-to-cart">Add to cart</button>
</div>
<div class="product-card">
<div class="product-image">📦 Image</div>
<h3 class="product-title">Strong Soap Rack</h3>
<div class="product-price">
<span class="old-price">₦1,000.00</span>
₦850.00
</div>
<button class="add-to-cart">Add to cart</button>
</div>
</div>
</main>
</body>
</html>