-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (51 loc) · 2.33 KB
/
index.html
File metadata and controls
60 lines (51 loc) · 2.33 KB
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 lang="en-gb">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settlement Map Generator</title>
<link href="https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&display=swap" rel="stylesheet" />
<link href="./styles.css" rel="stylesheet" />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
</head>
<body>
<section class="map-title" aria-labelledby="settlement-name">
<h1 id="settlement-name" contenteditable="true"> </h1>
<p id="settlement-type" contenteditable="true"> </p>
</section>
<nav id="buttons" aria-label="Map controls">
<button id="newVillageButton">New Village</button>
<button id="newTownButton">New Town</button>
<button id="newCityButton">New City</button>
</nav>
<main>
<canvas id="settlementCanvas" width="780" height="780"></canvas>
<ul id="customMenu"></ul>
<section id="poiList" aria-label="Points of Interest" style="display: none" role="region">
<h2>Points of Interest</h2>
<ul></ul>
</section>
</main>
<section class="legend">
<ul>
<li><span class="swatch swatch-slums" id="swatch-slums"></span> Slums</li>
<li><span class="swatch swatch-low" id="swatch-low"></span> Low</li>
<li><span class="swatch swatch-artisan" id="swatch-artisan"></span> Artisan</li>
<li><span class="swatch swatch-market" id="swatch-market"></span> Market</li>
<li><span class="swatch swatch-high" id="swatch-high"></span> High</li>
<li><span class="swatch swatch-temple" id="swatch-temple"></span> Temple</li>
<li><span class="swatch swatch-magic" id="swatch-magic"></span> Magic</li>
<li><span class="swatch swatch-necropolis" id="swatch-necropolis"></span> Necropolis</li>
<li><span class="swatch swatch-foreign" id="swatch-foreign"></span> Foreign Quarter</li>
<li><span class="swatch swatch-docks" id="swatch-docks"></span> Docks</li>
<li><span class="swatch swatch-fort" id="swatch-fort"></span> Fort</li>
<li> </li>
<li>1 square = 60 feet</li>
<li> </li>
<li class="risks">Safe, <span class="risk-3">Unsafe</span>, <span class="risk-2">Risky</span>, <span
class="risk-1">Deadly</span></li>
</ul>
</section>
<script src="settlementmap.js"></script>
</body>
</html>