-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
32 lines (28 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- <link rel="preload" as="font" href="./lib/fonts/MiSans-Regular.ttf" type="font/ttf" crossorigin="anonymous">
<link rel="preload" as="font" href="./lib/fonts/MiSans-Bold.ttf" type="font/ttf" crossorigin="anonymous">
<link rel="preload" as="font" href="./lib/fonts/LXGWWenKai-Regular.ttf" type="font/ttf" crossorigin="anonymous">
<link rel="preload" as="font" href="./lib/fonts/LXGWWenKai-Bold.ttf" type="font/ttf" crossorigin="anonymous"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<title>Markditor</title>
</head>
<body>
<div id="root">
<center class="splash" style="user-select: none;height: 90vh;">😊 Launching Markditor...</center>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
<style>
.splash {
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
}
</style>
</html>