-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.26 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>商品导航页</title>
<style>
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
max-width: 800px;
margin: 0 auto;
}
.item {
width: 200px;
height: 80px;
margin: 10px;
display: flex;
align-items: center;
justify-content: center;
background-color: #f1f1f1;
}
.item p {
text-align: center;
font-size: 16px;
}
h1 {
text-align: center;
}
</style>
</head>
<body>
<h1>商品导航页</h1>
<div class="container">
<a href="https://www.example.com">
<div class="item">
<p>商品1</p>
</div>
</a>
<a href="https://www.example.com">
<div class="item">
<p>商品2</p>
</div>
</a>
<a href="https://www.example.com">
<div class="item">
<p>商品3</p>
</div>
</a>
<!-- 添加更多商品 -->
</div>
</body>
</html>