-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
42 lines (40 loc) · 1.76 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>向天再借500年 · 修炼成仙</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='45' fill='%23d4af37' opacity='0.2'/><text x='50' y='70' font-size='60' text-anchor='middle' fill='%23d4af37'>寿</text></svg>">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- 导入中文字体 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=ZCOOL+XiaoWei&family=Orbitron:wght@400;700;900&display=swap" rel="stylesheet">
<!-- 使用本地字体和系统字体 -->
<style>
/* 中文字体回退方案 */
@font-face {
font-family: 'Chinese-Serif';
src: local('STSong'), local('SimSun'), local('宋体'), local('NSimSun'), local('新宋体');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Chinese-Sans';
src: local('PingFang SC'), local('Hiragino Sans GB'), local('Microsoft YaHei'), local('微软雅黑'), local('SimHei'), local('黑体');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Chinese-Calligraphy';
src: local('STKaiti'), local('KaiTi'), local('楷体'), local('FangSong'), local('仿宋');
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/client/main.ts"></script>
</body>
</html>