-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.html
82 lines (82 loc) · 2.54 KB
/
3.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
73
74
75
76
77
78
79
80
81
82
<!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;
line-height: 1.6;
}
header {
background: #35424a;
color: #ffffff;
padding: 1rem;
}
nav {
display: flex;
justify-content: space-between;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 1rem;
}
nav ul li a {
color: #ffffff;
text-decoration: none;
}
section {
padding: 2rem;
}
h2 {
border-bottom: 1px solid #35424a;
padding-bottom: 0.5rem;
}
p {
text-align: justify;
}
footer {
background: #35424a;
color: #ffffff;
text-align: center;
padding: 1rem;
margin-top: 1rem;
}
</style>
</head>
<body>
<header>
<nav>
<div>旅行博客</div>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">关于我们</a></li>
<li><a href="#">联系我们</a></li>
</ul>
</nav>
</header>
<section>
<h2>欢迎来到我的旅行博客</h2>
<p>在这里,你可以找到我旅行的点滴、心得和建议。希望我的旅行经历能给你带来一些灵感和快乐。</p>
</section>
<section>
<h2>最新文章</h2>
<article>
<h3>探索巴黎:浪漫之都的魅力</h3>
<p>巴黎,被誉为“光之城”,是法国的首都和最大城市。这里有着丰富的历史、艺术和文化,吸引了无数游客前来欣赏。在这篇文章中,我将分享我在巴黎的一些旅行体验和推荐景点。</p>
</article>
<article>
<h3>日本京都:千年古都的韵味</h3>
<p>京都,位于日本的中部地区,是一座拥有悠久历史的古都。这里的寺庙、神社和传统建筑令人叹为观止。在这篇文章中,我将带你领略京都的美丽风光和独特的文化魅力。</p>
</article>
</section>
<footer>
© 2023旅行博客.
</footer>
</body>
</html>