-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.33 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>白焗的主页</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>欢迎来到白焗的主页</h1>
</header>
<main>
<section>
<h2>关于我</h2>
<p>你好!我是白焗,一个热爱编程和设计的创意爱好者。这里是我的个人主页,分享我的作品、想法和生活。</p>
</section>
<section>
<h2>我的作品</h2>
<p>在这里你可以找到我最新的项目、设计作品和编程教程。如果你对我的工作感兴趣,欢迎随时联系我。</p>
</section>
<section>
<h2>联系我</h2>
<p>你可以通过以下方式找到我:</p>
<ul>
<li>电子邮件:<a href="mailto:[email protected]">[email protected]</a></li>
<li>GitHub:<a href="https://github.com/baiju" target="_blank">github.com/baiju</a></li>
<li>微博:<a href="https://weibo.com/baiju" target="_blank">weibo.com/baiju</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2024 白焗. 保留所有权利。</p>
</footer>
</body>
</html>