-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (23 loc) · 903 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
<!DOCTYPE html>
<html>
<head>
<title>Hovenia Editor</title>
<meta name="theme-color" content="black" />
<link href="https://cdn.tiye.me/logo/hovenia.png" rel="icon" type="image/png" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
<link rel="stylesheet" type="text/css" href="https://cdn.tiye.me/favored-fonts/roboto-mono.css">
<link rel="stylesheet" type="text/css" href="https://cdn.tiye.me/favored-fonts/main-fonts.css">
<style type="text/css">
html {
background-color: black;
}
</style>
<!-- <link rel="stylesheet" type="text/css" href="http://localhost:8100/cdn/roboto-mono.css"> -->
<link rel="stylesheet" type="text/css" href="./assets/main.css">
</head>
<body>
<div class="app"></div>
<script type="module" src="./main.mjs" ></script>
</body>
</html>