forked from learn-co-curriculum/javascript-hide-and-seek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (56 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Hide and Seek</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="node_modules/mocha/mocha.css" />
</head>
<body>
<main id="app">
<ul class="unranked-list">
<li>2</li>
<li>5</li>
<li>4</li>
</ul>
<ul class="ranked-list">
<li>1</li>
<li>2</li>
</ul>
<ul class="ranked-list">
<li>12</li>
<li>11</li>
<li>10</li>
</ul>
<div id="nested">
<div>
<div>
<div>
<div class="target">
1
</div>
</div>
</div>
</div>
</div>
<div id="grand-node">
<div>
<div>
<div>
<div>
boo!
</div>
</div>
</div>
</div>
</div>
</main>
<script src="index.js"></script>
<!-- Open this file and call `mocha.run()` in console to run tests -->
<div id="mocha"></div>
<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/expect/umd/expect.min.js"></script>
<script>mocha.setup('bdd');</script>
<script src="test/index-test.js"></script>
</body>
</html>