-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (67 loc) · 2.66 KB
/
index.html
File metadata and controls
73 lines (67 loc) · 2.66 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anya Reese</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- 波浪背景 -->
<a-waves>
<svg class="js-svg"></svg>
</a-waves>
<div class="container">
<div class="profile">
<img src="anya.png" alt="Anya Reese" class="avatar">
<h1>Zixin Lin</h1>
</div>
<div class="social-links">
<a href="https://github.com/AnyaReese" title="GitHub" class="social-link-item">
<i class="fab fa-github"></i>
<span class="link-text">Github</span>
</a>
<span class="divider">/</span>
<a href="mailto:anyareese555@gmail.com" title="Gmail" class="social-link-item">
<i class="fas fa-envelope"></i>
<span class="link-text">GMail</span>
</a>
<span class="divider">/</span>
<a href="http://anyareese.me/iGEM2025-WP2/" title="Project Wiki" class="social-link-item">
<i class="fas fa-globe"></i>
<span class="link-text">iGEM Trial Wiki</span>
</a>
<span class="divider">/</span>
<a href="http://anyareese.me/slides/" title="Slides" class="social-link-item">
<i class="fas fa-desktop"></i>
<span class="link-text">Slides</span>
</a>
<!-- TODO: 笔记本 -->
<!-- <span class="divider">/</span>
<a href="about.html" title="Notebook"><i class="fas fa-book"></i></a> -->
<span class="divider">/</span>
<a href="https://2025.igem.wiki/zju-china/" title="iGEM 2025 Int'l Competition" class="social-link-item">
<i class="fas fa-trophy"></i>
<span class="link-text">iGEM Competition</span>
</a>
<span class="divider">/</span>
<a href="./about.html" title="About Me" class="social-link-item">
<i class="fas fa-user"></i>
<span class="link-text">Resumé</span>
</a>
</div>
<div id="link-preview"></div>
<footer>
<p>Copyright © 2025 @AnyaReese</p>
</footer>
</div>
<div class="theme-switch">
<i class="fas fa-moon"></i>
</div>
<!-- 脚本 -->
<script src="js/Noise.js"></script>
<script src="js/waves.js"></script>
<script src="script.js"></script>
</body>
</html>