-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (122 loc) · 4.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carte de Doryandry</title>
<link rel="stylesheet" href="./style/style.css">
<script src="https://kit.fontawesome.com/9611474495.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>Carte de Doryandry</h1>
</header>
<main>
<div id="doryandryMap">
<img id="map" src="./sources/map.png" alt="MISSING_FILE">
<img id="mapDistricts" class="mapDistricts" src="./sources/mapDistricts.png" alt="MISSING_FILE">
<div id="mapIcons">
</div>
</div>
<div id="mapLegend">
<h2>Legende</h2>
<table>
<tr>
<td><i class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/landGate.png" alt="ERR::">
<span></span>
<p>Porte terrestre</p>
</td>
<td><i class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/waterGate.png" alt="ERR::">
<span></span>
<p>Porte maritime</p>
</td>
<td><i class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/railGate.png" alt="ERR::">
<span></span>
<p>Porte ferroviaire</p>
</td>
</tr>
<tr>
<td><i id="toggleFoot" class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/foot.png" alt="ERR::">
<span></span>
<p>Stade</p>
</td>
<td><i id="toggleShop" class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/shop.png" alt="ERR::">
<span></span>
<p>Magasin</p>
</td>
<td><i id="toggleSchool" class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/school.png" alt="ERR::">
<span></span>
<p>Ecole</p>
</td>
</tr>
<tr>
<td><i id="toggleFort" class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/fort.png" alt="ERR::">
<span></span>
<p>Fort</p>
</td>
<td><i id="toggleParc" class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/parc.png" alt="ERR::">
<span></span>
<p>Parc</p>
</td>
<td><i id="toggleTrain" class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/train.png" alt="ERR::">
<span></span>
<p>Gare</p>
</td>
</tr>
<tr>
<td><i id="toggleCimetery" class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/cimetery.png" alt="ERR::">
<span></span>
<p>Cimetiere</p>
</td>
<td><i id="toggleChurch" class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/church.png" alt="ERR::">
<span></span>
<p>Eglise</p>
</td>
<td><i id="togglePaint" class="far fa-check-square"></i>
<span></span>
<img src="./sources/icons/paint.png" alt="ERR::">
<span></span>
<p>Musee</p>
</td>
</tr>
<tr>
<td></td>
<td><i id="toggleDistrict" class="far fa-check-square"></i>
<span></span>
<p>Districts</p>
</td>
<td></td>
</tr>
</table>
<span id="binary"></span><span id="flashing">_</span>
</div>
</main>
<footer>
<p>IHM : Pierre Marquet - 2021</p>
</footer>
<script src="./js/binary.js"></script>
<script src="./js/script.js"></script>
</body>
</html>