-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (62 loc) · 1.49 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
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>爱吃土豆</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
}
header {
background-color: #ffcc00;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
}
.container {
padding: 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.gallery img {
width: 300px;
height: auto;
margin: 10px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 10px;
background-color: #ffcc00;
}
</style>
</head>
<body>
<header>
<h1>爱吃土豆</h1>
<p>探索土豆的美味世界!</p>
</header>
<div class="container">
<h2>土豆美食展示</h2>
<div class="gallery">
<img src="img/tudou.jpeg" alt="土豆">
<img src="img/zhatudou.jpeg" alt="炸土豆">
<img src="img/kaotudou.jpeg" alt="烤土豆">
<img src="img/tudouni.jpeg" alt="土豆泥">
</div>
</div>
<footer>
<p>© 2024 爱吃土豆 | 联系我们</p>
</footer>
</body>
</html>