-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
37 lines (34 loc) · 1.17 KB
/
about.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>关于 - PupTunes Radio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-content">
<h1 class="site-title"><a href="index.html">PupTunes Radio</a></h1>
<nav>
<ul>
<li><a href="index.html">首页</a></li>
<li><a href="about.html">关于</a></li>
<li><a href="photos.html">照片</a></li>
<li><a href="pets.html">宠物护理</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section>
<h2>关于我</h2>
<p>欢迎来到PupTunes Radio!我是一名爱狗人士和博客作者,喜欢分享我的日常冒险、宠物护理技巧,以及一些我最喜欢的照片。与我一起探索和我的毛茸茸朋友一起生活的乐趣吧!</p>
</section>
</main>
<footer>
<p>粤ICP备2024268865号-2</p>
</footer>
<script src="script.js"></script>
</body>
</html>