-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlistproduct.html
More file actions
126 lines (121 loc) · 5.23 KB
/
listproduct.html
File metadata and controls
126 lines (121 loc) · 5.23 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
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./assets/css/base.css">
<link rel="stylesheet" href="./assets/css/grid.css">
<link rel="stylesheet" href="./assets/css/header.css">
<link rel="stylesheet" href="./assets/css/footer.css">
<link rel="stylesheet" href="./assets/css/listproduct.css">
<title>List Product</title>
<script src="./assets/js/base.js"></script>
</head>
<body>
<div class="app">
<script> render('header', '.app'); </script>
<div class="product-container">
<table class="tab-bar">
<tr onclick="showIcon(this)">
<td style="width: 30px;"><i id="icon" class="fa-solid fa-mug-hot fa-lg"></i></td>
<td>Tất cả</td>
</tr>
<tr onclick="showIcon(this)">
<td ></td>
<td>Cà phê</td>
</tr>
<tr onclick="showIcon(this)">
<td ></td>
<td>CloudFee</td>
</tr>
<tr onclick="showIcon(this)">
<td ></td>
<td>CloudTea</td>
</tr>
<tr onclick="showIcon(this)">
<td ></td>
<td>Trà</td>
</tr>
<tr onclick="showIcon(this)">
<td ></td>
<td>Hi-Tea Healthy</td>
</tr>
<tr onclick="showIcon(this)">
<td ></td>
<td>Bánh & Snack</td>
</tr>
<tr onclick="showIcon(this)">
<td ></td>
<td>Thức uống khác</td>
</tr>
</table>
<div class="content">
<div class="products">
<h2 class="product-title">Cà phê Việt Nam</h2>
<div class="product" id="sp1" onclick="window.location.href = '/product.html'">
<img src="./assets/img/suada.jpg" alt="">
<div>
<h3 class="product_name">Cà phê sữa đá</h3>
</div>
<div>
<h3 class="product_price">29.000</h3>
</div>
</div>
<div class="product" id="sp2" onclick="window.location.href = '/product.html'">
<img src="./assets/img/suanong.jpg" alt="">
<div>
<h3 class="product_name">Cà phê sữa nóng</h3>
</div>
<div>
<h3 class="product_price">35.000</h3>
</div>
</div>
<div class="product" id="sp3" onclick="window.location.href = '/product.html'">
<img src="./assets/img/machiato.jpg" alt="">
<div>
<h3 class="product_name">Macchiato</h3>
</div>
<div>
<h3 class="product_price">49.000</h3>
</div>
</div>
<div class="product" id="sp4" onclick="window.location.href = '/product.html'">
<img src="./assets/img/machiato.jpg" alt="">
<div>
<h3 class="product_name">Macchiato</h3>
</div>
<div>
<h3 class="product_price">49.000</h3>
</div>
</div>
<div class="product" id="sp5" onclick="window.location.href = '/product.html'">
<img src="./assets/img/machiato.jpg" alt="">
<div>
<h3 class="product_name">Macchiato</h3>
</div>
<div>
<h3 class="product_price">49.000</h3>
</div>
</div>
<div class="product" id="sp6" onclick="window.location.href = '/product.html'">
<img src="./assets/img/machiato.jpg" alt="">
<div>
<h3 class="product_name">Macchiato</h3>
</div>
<div>
<h3 class="product_price">49.000</h3>
</div>
</div>
</div>
</div>
</div>
<div id="toast"></div>
<script> render('footer', '.app'); </script>
<script src="./assets/js/listproduct.js"></script>
</div>
</body>
</html>