-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
71 lines (63 loc) · 2.52 KB
/
about.html
File metadata and controls
71 lines (63 loc) · 2.52 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<h1>我的博客</h1>
<p>分享我的思考与经验</p>
</div>
</header>
<nav>
<div class="container">
<ul>
<li><a href="index.html">首页</a></li>
<li><a href="blog.html">博客</a></li>
<li><a href="about.html" class="active">关于我</a></li>
<li><a href="contact.html">联系方式</a></li>
</ul>
</div>
</nav>
<main>
<div class="container">
<section class="about-page">
<h2>关于我</h2>
<div class="about-content">
<img src="https://via.placeholder.com/300x300" alt="个人照片" class="profile-image">
<div class="about-text">
<h3>BloomFallr</h3> <!-- 在这里修改为你的名字 -->
<p class="bio">一位中科大本科生, 喜欢游戏, 正在学习 DL 与游戏开发.</p> <!-- 在这里修改为你的简介 -->
<div class="skills">
<h4>Skills</h4>
<ul>
<li></li> <!-- 修改为你的技能 -->
</ul>
</div>
<div class="social-links">
<h4>在社交媒体上找到我</h4>
<a href="https://github.com/BloomFallr"><i class="fab fa-github"></i> GitHub</a>
</div>
</div>
</div>
</section>
</div>
</main>
<footer>
<div class="container">
<div class="footer-content">
<div class="social-links">
<a href="https://github.com/BloomFallr"><i class="fab fa-github"></i></a>
</div>
<p>© 2025 我的个人博客. 保留所有权利。</p>
</div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>