-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.69 KB
/
Copy pathindex.html
File metadata and controls
45 lines (45 loc) · 1.69 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<link rel="stylesheet" href="https://theonekit.github.io/3rdparty/typeface-roboto@0.0.75/typeface-roboto.css" />
<link rel="apple-touch-icon" href="/assets/apple-touch-icon.png">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<meta name="apple-mobile-web-app-title" content="One">
<link rel="manifest" href="manifest.json">
<script data-mode="defer" src="./index.js"></script>
<style>
@media (prefers-color-scheme: dark) {
html, body {
background: #212121;
min-height: 100vh;
}
}
* {
user-select: none;
scrollbar-width: none;
-ms-overflow-style: none;
}
*::-webkit-scrollbar-button,
*::-webkit-scrollbar-track,
*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar {
display: none;
}
</style>
<script src="./3rdparty/ace@1.4.12/ace.js"></script>
<script src="./3rdparty/ace@1.4.12/mode-javascript.js"></script>
<script src="./3rdparty/ace@1.4.12/theme-twilight.js"></script>
<script src="./3rdparty/ace@1.4.12/theme-chrome.js"></script>
<script src="./3rdparty/ace@1.4.12/worker-javascript.js"></script>
<title>The One most advanced form creation kit for React</title>
<meta name="description" content="The One most advanced form creation kit for React"/>
</head>
<body>
<div id="mount-point"></div>
<!-- Happy hacking :-) -->
<script type="text/babel" src="./src/index.js"></script>
</body>
</html>