-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlm2.html
39 lines (35 loc) · 824 Bytes
/
lm2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>La-Mulana 2 Ruins Mapper</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div>
<img src="images/LM2.png">
</div>
<h1>Entrances</h1>
<div>
<p>
<label>Full Rando (Ladders and Doors connect unrestricted)</label>
<input type="checkbox" checked="checked" id="full-rando">
</p>
</div>
<div id="entrance-list"></div>
<h1>Soul Gates</h1>
<div id="soul-list"></div>
<h1>Escape Route</h1>
<div id="escape-route">
<p><em class="note">Not guaranteed to be the fastest route, but attempts to minimize area transitions!</em></p>
<ul id="escape-route-list"></ul>
</div>
<h1>Notes</h1>
<div>
<textarea rows="5" id="notes"></textarea>
</div>
<script src="./lm2.js">
//require('./control.js');
</script>
</body>
</html>