-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.html
executable file
·45 lines (35 loc) · 940 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSONEditor</title>
<script src="./resources/cache.js"></script>
<link href="./resources/jsoneditor.css" rel="stylesheet" type="text/css">
<link href="./resources/main.css" rel="stylesheet" type="text/css">
<link href="./resources/toast.min.css" rel="stylesheet" type="text/css">
<script src="./resources/localforage.min.js"></script>
<script src="./resources/jsoneditor.js"></script>
<script src="./resources/toast.min.js"></script>
<style type="text/css">
body {
font: 10.5pt arial;
color: #4d4d4d;
line-height: 150%;
width: 100%;
height: 100vh;
margin: 0px;
}
code {
background-color: #f5f5f5;
}
#jsoneditor {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="jsoneditor"></div>
<script src="./resources/main.js"></script>
</body>
</html>