-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>List to Tree</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<form id="controls" name="style">
<fieldset>
<label class="hidden">Style:</label>
<div class="radio">
<input type="radio" id="style-unicode" name="style" value="unicode" checked />
<label for="style-unicode">Unicode</label>
<input type="radio" id="style-ascii" name="style" value="ascii" />
<label for="style-ascii">ASCII</label>
</div>
</fieldset>
<fieldset>
<label class="hidden">Theme:</label>
<div class="radio">
<input type="radio" id="theme-light" name="theme" value="light" />
<label for="theme-light">Light</label>
<input type="radio" id="theme-dark" name="theme" value="dark" />
<label for="theme-dark">Dark</label>
</div>
</fieldset>
</form>
<div id="container">
<textarea id="input" spellcheck="false"></textarea>
<code id="output"></code>
</div>
<script src="scripts/jquery-3.4.1.min.js"></script>
<script src="scripts/list2tree.js"></script>
</body>
</html>