-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (52 loc) · 1.14 KB
/
Copy pathindex.html
File metadata and controls
55 lines (52 loc) · 1.14 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<title>随记</title>
<link rel="icon" href="favicon.ico" />
<style>
@font-face {
font-family: "Crackvetica";
src: url("./assets/fonts/Crackvetica.ttf");
}
html,
body {
height: 100%;
margin: 0;
}
main {
font-family: Crackvetica;
text-align: center;
padding-top: 10%;
font-size: 76px;
letter-spacing: 12px;
}
footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
text-align: center;
padding: 20px 0 10px;
}
a {
text-decoration: none;
}
a:visited {
color: black;
}
a:hover {
color: rgb(61, 174, 240);
}
</style>
</head>
<body>
<main>BUILDING</main>
<footer>
©2022 note
<!-- <a href="https://beian.miit.gov.cn" target="_blank">鲁ICP备2020044946号-1</a> -->
</footer>
</body>
</html>