-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.03 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>主页</title>
<link rel="stylesheet" type="text/css" href="main.css" media="screen and (min-width: 481px)">
<link rel="stylesheet" type="text/css" href="main-mobile.css" media="screen and (max-width: 480px)">
</head>
<body>
<nav>
<ul>
<li class="selected">主页</li>
<li><a href="about.html">关于</a></li>
<li><a href="note.html">笔记</a></li>
<li><a href="science.html">杂记</a></li>
<li><a href="lab.html">实验</a></li>
</ul>
</nav>
<h1 class="center">
欢迎!
</h1>
<p class="center">
<img src="pic/送花.gif" alt="fail to display image">
</p>
<footer>
© 2024, Gu Wei
<br>
All trademarks and registered trademarks appearing on
this site are the property of their respective owners. ( :
</footer>
</body>
</html>