-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
43 lines (42 loc) · 1.22 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-M/highlight.js/10.6.0/styles/atom-one-dark.min.css"
/>
<!-- CSS -->
<link
href="https://unpkg.com/[email protected]/dist/Artalk.css"
rel="stylesheet"
/>
<script src="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-M/highlight.js/10.6.0/highlight.min.js"></script>
<script src="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-M/marked/2.0.0/marked.min.js"></script>
<!-- JS -->
<script src="https://unpkg.com/[email protected]/dist/Artalk.js"></script>
<title>ISpeak</title>
<style>
body,
html {
/* height: 100%; */
}
.page {
padding: 50px 40px;
max-width: 1000px;
margin: 0 auto;
/* height: 100%; */
border-radius: 8px;
box-shadow: 0 3px 8px 6px rgba(7, 17, 27, 0.15);
}
</style>
</head>
<body>
<div class="page">
<div id="app"></div>
</div>
<script type="module" src="/src/main.ts" async></script>
</body>
</html>