-
Notifications
You must be signed in to change notification settings - Fork 2
/
category.html
51 lines (42 loc) · 1.37 KB
/
category.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles/nav_fot.css">
<link rel="stylesheet" href="category.css">
<title>Catogeries</title>
</head>
<body>
<div id="navbar">
</div>
<div id="container">
<div id="sorting">
<h1>Sort By...</h1>
<div id="byname">
<h2>By Name</h2>
<button id="AtoZ">A To Z</button>
<button id="ZtoA">Z To A</button>
</div>
<div id="byrating">
<h2>By Rating</h2>
<button id="Good_rate">Good Rating</button>
</div>
<div id="byprice">
<h2>By Price</h2>
<button id="high_to_low">High To Low</button>
<button id="low_to_high">Low To High</button>
<button id="greater_4000">>4000</button>
<button id="lesser_4000"><=4000</button>
</div>
</div>
<div id="category_data">
</div>
</div>
<div id="footer">
</div>
</body>
</html>
<script type="module" src="category.js"></script>