-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
30 lines (30 loc) · 902 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width,initial-scale=1.0,minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link rel="icon" href="favicon.ico" />
<title>Online Code Editor</title>
<link rel="preconnect" href="https://s1.hdslb.com/" />
<link
rel="stylesheet"
href="https://s1.hdslb.com/bfs/static/jinkela/long/font/regular.css"
/>
<link
rel="stylesheet"
href="https://fastly.jsdelivr.net/npm/codemirror@5.61.1/lib/codemirror.css"
/>
<link
rel="stylesheet"
href="https://fastly.jsdelivr.net/npm/codemirror@5.61.1/theme/material-darker.css"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>