-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.28 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
<!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" href="styles.css">
</head>
<body>
<header>
<h1>欢迎来到我的个人网站</h1>
<nav>
<ul>
<li><a href="#about">关于我</a></li>
<li><a href="#projects">项目</a></li>
<li><a href="#contact">联系我</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>关于我</h2>
<p>这里是我的个人简介。我是一名编程爱好者。</p>
</section>
<section id="projects">
<h2>项目</h2>
<ul>
<li>项目1:描述项目1的内容。</li>
<li>项目2:描述项目2的内容。</li>
</ul>
</section>
<section id="contact">
<h2>联系我</h2>
<p>你可以通过以下方式联系我:<a href="mailto:[email protected]">[email protected]</a></p>
</section>
</main>
<footer>
<p>© Franklin </p>
</footer>
<script src="script.js"></script>
</body>
</html>