-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 1.74 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>TreeView</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/solid.css" integrity="sha384-r/k8YTFqmlOaqRkZuSiE9trsrDXkh07mRaoGBMoDcmA58OHILZPsk29i2BsFng1B" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/fontawesome.css" integrity="sha384-4aon80D8rXCGx9ayDt85LbyUHeMWd3UiBaWliBlJ53yzm9hqN21A+o1pqoyK04h+" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<section data-module="categs" class="flexrow">
<div class="tree">
<ul>
<li>
<span>Level 1</span>
<ul>
<li>
<span>Level 2</span>
<ul>
<li><span>Level 3</span></li>
<li><span>Level 3</span></li>
</ul>
</li>
<li>
<span>Level 2</span>
<ul>
<li><span>Level 3</span></li>
<li>
<span>Level 3</span>
<ul>
<li><span>Level 4</span></li>
<li>
<span>Level 4</span>
<ul>
<li><span>Level 5</span></li>
<li><span>Level 5</span></li>
</ul>
</li>
<li><span>Level 4</span></li>
</ul>
</li>
<li><span>Level 3</span></li>
</ul>
</li>
</ul>
</li>
<li>
<span>Level 1</span>
<ul>
<li><span>Level 2</span></li>
</ul>
</li>
</ul>
</div>
</section>
<script type="text/javascript" src="js.js"></script>
</body>
</html>