-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (23 loc) · 971 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Produ Store</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<h2 class="text-center">Products</h2>
<div class="btn-category container">
<button onclick="showProducts('all')" class="btn">All Products</button>
<button onclick="showProducts('chairProducts')" class="btn">Chairs</button>
<button onclick="showProducts('electronicProducts')" class="btn">Electronics</button>
<button onclick="showProducts('kitchenProducts')" class="btn">Kitchen</button>
<button onclick="showProducts('sportProducts')" class="btn">Wears</button>
<button onclick="showProducts('wearProducts')" class="btn">Sports</button>
</div>
<div class="product-section container">
</div>
<script src="./js/script.js"></script>
</body>
</html>