-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.08 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>
<head>
<meta charset="UTF-8"> <!-- 设置文档的字符编码 -->
<title>网页标题</title> <!-- 页面标题,显示在浏览器标签上 -->
<link rel="stylesheet" href="styles.css"> <!-- 引入外部样式表 -->
</head>
<body>
<header>
<h1>欢迎来到我的网站</h1>
</header>
<nav>
<ul>
<li><a href="https://blog.csdn.net/onepiece1991/article/details/85259391">部分1</a></li>
<li><a href="#section2">部分2</a></li>
<li><a href="#section3">部分3</a></li>
</ul>
</nav>
<main>
<section id="section1">
<h2>部分1</h2>
<p>这是部分1的内容。</p>
</section>
<section id="section2">
<h2>部分2</h2>
<p>这是部分2的内容。</p>
</section>
<section id="section3">
<h2>部分3</h2>
<p>这是部分3的内容。</p>
</section>
</main>
<footer>
<p>© 2025 我的网站. 保留所有权利。</p>
</footer>
</body>
</html>