-
Notifications
You must be signed in to change notification settings - Fork 0
/
photos.html
40 lines (37 loc) · 1.1 KB
/
photos.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
<!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>
<div class="gallery">
<img src="assets/photo1.jpg" alt="照片1">
<img src="assets/photo2.jpg" alt="照片2">
</div>
</section>
</main>
<footer>
<p>粤ICP备2024268865号-2</p>
</footer>
<script src="script.js"></script>
</body>
</html>