-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (67 loc) · 2.8 KB
/
index.html
File metadata and controls
74 lines (67 loc) · 2.8 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
<!DOCTYPE HTML>
<html>
<head>
<title>FOGMOE</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<!-- 异步加载 Font Awesome 图标,不阻塞页面渲染 -->
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" as="style"
integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg=="
crossorigin="anonymous" referrerpolicy="no-referrer" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</noscript>
<!-- 异步加载 Google 字体,不阻塞页面渲染 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="style"
href="https://fonts.googleapis.com/css2?family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap">
</noscript>
<link rel="stylesheet" href="assets/css/main.css" />
<noscript>
<link rel="stylesheet" href="assets/css/noscript.css" />
</noscript>
</head>
<body class="is-preload">
<div id="wrapper">
<div id="bg"></div>
<div id="overlay"></div>
<div id="main">
<!-- Header -->
<header id="header">
<h1>FOGMOE</h1>
<p>Creative Innovation at the Digital Frontier</p>
<nav>
<ul>
<li><a href="https://x.com/FOG_MOE" class="icon fa-brands fa-x-twitter"><span
class="label">Twitter</span></a></li>
<li><a href="https://t.me/+yTDYzklueZ0xNGNl" class="icon fa-brands fa-telegram"><span
class="label">Telegram</span></a></li>
<li><a href="https://github.com/FogMoe" class="icon fa-brands fa-github"><span
class="label">Github</span></a></li>
<li><a href="mailto:kc@fog.moe" class="icon fa-solid fa-envelope"><span
class="label">Email</span></a></li>
</ul>
</nav>
</header>
<!-- Footer -->
<footer id="footer">
<span class="copyright">© FOGMOE · Since 2020</span>
</footer>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
document.body.classList.remove('is-preload');
});
window.ontouchmove = function () { return false; }
window.onorientationchange = function () { document.body.scrollTop = 0; }
</script>
</body>
</html>