-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (72 loc) · 2.78 KB
/
index.html
File metadata and controls
78 lines (72 loc) · 2.78 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ydog01 的主页</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="styles/stars.css">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div class="simple-stars" id="simpleStars"></div>
<div class="cursor-glow" id="cursorGlow"></div>
<div class="container">
<div class="profile-card">
<div class="avatar-container">
<img src="https://q1.qlogo.cn/g?b=qq&nk=1917927623&s=640"
class="avatar"
alt="ydog01的头像"
onerror="this.src='https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f47e.svg'">
<div class="avatar-glow"></div>
<div class="avatar-sparkles"></div>
</div>
<h1 class="glowing-text">ydog01</h1>
<p class="tagline">一名C++开发者~</p>
<div class="details">
<div class="detail-item">
<i class="fas fa-birthday-cake"></i>
<span>12月6日</span>
</div>
<div class="detail-item">
<i class="fas fa-envelope"></i>
<span>QQ: 1917927623</span>
</div>
<div class="detail-item">
<i class="fas fa-code"></i>
<span>C++开发者</span>
</div>
</div>
</div>
<div class="social-links">
<a href="https://github.com/ydog01"
class="social-link github"
target="_blank"
title="GitHub">
<i class="fab fa-github"></i>
<div class="social-glow"></div>
</a>
<a href="https://space.bilibili.com/1283540854"
class="social-link bilibili"
target="_blank"
title="哔哩哔哩">
<i class="fab fa-bilibili"></i>
<div class="social-glow"></div>
</a>
<a href="https://osu.ppy.sh/users/ydog01"
class="social-link osu"
target="_blank"
title="osu! 个人资料">
<i class="fas fa-gamepad"></i>
<div class="social-glow"></div>
</a>
</div>
<footer>
<p>© 2025 ydog01 | 伊蕾娜万岁~</p>
<div class="footer-sparkle"></div>
</footer>
</div>
<script src="scripts/stars.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>