-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 932 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
<html>
<head>
<script src="./ts/index.ts"></script>
<link href="./styles/base.styl" rel="stylesheet">
</head>
<body>
<ul id="main">
<li class="active">
<span>Cats</span>
<ul>
<li>
<span>subset of</span>
<ul>
<li><span>Animal</span></li>
<li><span>Object</span></li>
<li><span>Mammal</span></li>
</ul>
</span></li>
<li>
<span>hates</span>
<ul>
<li>
<span>Dogs</span>
<ul>
<li>
<span>sometimes</span>
</li>
</ul>
</li>
<li>
<span>Noise</span>
<ul>
<li>
<span>sometimes</span>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</body>
</html>