forked from xm778my/PersonalPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 2.25 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
65
66
67
<!DOCTYPE html>
<html lang="zh">
<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="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="public/css/style.css" />
</head>
<body>
<canvas id="bg"></canvas>
<main class="container">
<img
class="avatar"
src="public/img/头像.jpg"
alt="Avatar"
/>
<h3 class="nickname">不放酱油</h3>
<p class="introduce">物理学不存在了——————所以,学数学吧。</p>
<nav>
<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 href="#">
<img src="public/svg/qq.svg" />
</a>
<div class="tooltip"><img src="public/img/qq.jpg" /></div>
</div>
<div class="item">
<a target="_blank" href="mailto:[email protected]">
<img src="public/svg/lark.svg" />
</a>
<div class="tooltip">个人邮箱</div>
</div>
<div class="item">
<a target="_blank" href="https://github.com/bfjy2024">
<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-notexists5247号</a
>
<p class="copyright">
Copyright© 2024 github.com/bfjy2024 All Rights Reserved
</p>
</footer>
</main>
<!--<script src="https://www.hhlqilongzhu.cn/api/QQmusic_ck/music_bfq/yybfq.js"></script>-->
<script src="public/js/StarrySky.js"></script>
<script src="public/js/index.js"></script>
</body>
</html>