-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoods.html
72 lines (61 loc) · 1.73 KB
/
goods.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
}
section {
margin: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.category-card {
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
margin: 10px;
padding: 20px;
width: 200px;
text-align: center;
cursor: pointer;
}
h2 {
color: #333;
}
p {
color: #666;
}
</style>
<title>Types of Goods</title>
</head>
<body>
<header>
<h1>Types of Goods</h1>
<p>Select a category to view items</p>
</header>
<section>
<div class="category-card" onclick="window.location.href='items.html?category=Consumer Goods'">
<h2>Consumer Goods</h2>
<p>Electronics, Apparel, Furniture</p>
</div>
<div class="category-card" onclick="window.location.href='items.html?category=Food and Beverages'">
<h2>Food and Beverages</h2>
<p>Canned Goods, Snacks, Beverages</p>
</div>
<!-- Add more category cards as needed -->
</section>
</body>
</html>