-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.27 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en" translate="no">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="referrer" content="no-referrer">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; font-src 'self' data:; connect-src 'self' https: wss:; frame-src 'none'; object-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; upgrade-insecure-requests" />
<meta name="description" content="Physics Lab Web 物理实验室线上社区" />
<meta name="keywords" content="Physics Lab Web, 物理实验室, physics lab" />
<meta name="google" content="notranslate" />
<title>Physics Lab Web</title>
<link rel="shortut icon" href="/assets/icons/logo.png" type="image/png" />
<style>
.RUser {
color: cornflowerblue;
}
/* 带有internal的属性链接呈浅蓝色 */
a[internal] {
color: cornflowerblue;
text-decoration: none;
}
div {
box-sizing: border-box;
font-weight: 500;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>