-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 1.83 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heath的个人网页</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #d4f0fd; /* 天蓝色 */
color: #333;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
text-align: center;
}
.profile {
margin-bottom: 20px;
}
.profile img {
border-radius: 50%;
width: 150px;
height: 150px;
}
.profile h1 {
font-size: 2em;
}
.profile p {
font-size: 1.2em;
}
.content {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<div class="container">
<div class="profile">
<img src="https://github.com/wang9th.png" alt="wang9th的头像">
<h1>Heath</h1>
<p>你好!我是Heath,这里是我的个人网页。我喜欢分享我的工作和生活。</p>
</div>
<div class="content">
<h2>我的项目</h2>
<!-- 在这里添加你的项目展示 -->
</div>
<div class="content">
<h2>我的技能</h2>
<!-- 在这里添加你的技能展示 -->
</div>
<div class="content">
<h2>联系我</h2>
<p>你可以通过我的 <a href="https://github.com/wang9th">GitHub 页面</a> 来联系我。</p>
</div>
</div>
</body>
</html>