-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (85 loc) · 2.18 KB
/
index.html
File metadata and controls
86 lines (85 loc) · 2.18 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>anakbhs · 个人主页</title>
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #0f172a;
color: #e5e7eb;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.card {
max-width: 720px;
width: 90%;
background: #020617;
border-radius: 18px;
padding: 32px 28px;
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
border: 1px solid #1e293b;
}
h1 {
margin: 0 0 8px;
font-size: 28px;
}
h2 {
margin: 0 0 16px;
font-size: 16px;
font-weight: 400;
color: #94a3b8;
}
p {
line-height: 1.8;
color: #cbd5f5;
}
.links {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.links a {
text-decoration: none;
padding: 8px 14px;
border-radius: 999px;
border: 1px solid #334155;
color: #e5e7eb;
font-size: 14px;
}
.links a:hover {
background: #1d4ed8;
border-color: #1d4ed8;
}
.tagline {
margin-top: 6px;
font-size: 14px;
color: #9ca3af;
}
</style>
</head>
<body>
<div class="card">
<h1>Hi,我是 anakbhs 👋</h1>
<h2>一句话介绍自己(比如:独立开发者 / 学生 / XXX 行业从业者)</h2>
<p>
在这里简单写几句自我介绍:你在做什么、对什么感兴趣、目前在折腾什么项目。
不用太正式,当成给朋友看的个人名片就好。
</p>
<p class="tagline">
「可以写一句你喜欢的座右铭、slogan 或者最近的状态。」
</p>
<div class="links">
<a href="mailto:your@email.com">📧 Email</a>
<a href="https://github.com/你的GitHub用户名" target="_blank">🐙 GitHub</a>
<a href="https://twitter.com/" target="_blank">🐦 Twitter / X</a>
<a href="#projects">📁 我的项目(以后可以加锚点)</a>
</div>
</div>
</body>
</html>