-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
59 lines (59 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>个人主页</title>
<link rel="stylesheet" href="public/css/style.css" />
</head>
<body>
<canvas id="bg"></canvas>
<main class="container">
<img
class="avatar"
src="https://blog.mengxing.cc/usr/themes/dream/assets/img/face2.png"
alt="Avatar"
/>
<h3 class="nickname">DoWake</h3>
<p class="introduce">心若有所向往,何惧道阻且长。</p>
<nav>
<div class="item">
<a href="#">
<img src="public/svg/qq.svg" />
</a>
<div class="tooltip"><img src="public/img/qq.jpg" /></div>
</div>
<div class="item">
<a href="#">
<img src="public/svg/wechat.svg" />
</a>
<div class="tooltip"><img src="public/img/wechat.jpg" /></div>
</div>
<div class="item">
<a target="_blank" href="https://github.com/DoWake/PersonalPage">
<img src="public/svg/github.svg" />
</a>
<div class="tooltip">项目地址</div>
</div>
</nav>
<p class="quote">
无论人生上到哪一层台阶,阶下有人在仰望你,阶上亦有人在俯视你。
你抬头自卑,低头自得,唯有平视,才能看见最真实的自己。 ——杨绛
</p>
<footer>
<a
target="_blank"
class="icp"
href="https://beian.miit.gov.cn/#/Integrated/index"
>ICP备20200990766-2号</a
>
<p class="copyright">
Copyright© 2023 Mengxing.CC. All Rights Reserved
</p>
</footer>
</main>
<script src="public/js/StarrySky.js"></script>
<script src="public/js/index.js"></script>
</body>
</html>