-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (57 loc) · 2.79 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Werewolves</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='css/main.css'>
<link rel='stylesheet' type='text/css' media='screen' href='css/buttons.css'>
<link rel='stylesheet' type='text/css' media='screen' href='css/characters.css'>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script type="text/javascript" src='js/settings.js'></script>
<script type="text/javascript" src='js/timer.js'></script>
<script type="text/javascript" src='js/sound.js'></script>
<script type="text/javascript" src='js/allOrder.js'></script>
<script type="text/javascript" src='js/charOptions.js'></script>
<script type="text/javascript" src='js/tips.js'></script>
<script type="text/javascript" src='js/main.js'></script>
</head>
<body>
<div id="content">
<h1>Werewolves of Miller's Hollow</h1>
<ul id="characters" class="characters_list">
<li>
<input type="checkbox" id="character">
<label for="character">
<img title="character" id="characterImg" src="img/chars/character.png" />
<div class="expansion">
<img title="Requires 'The Village' expansion" class="villageExpansion" src="img/expansion/villageExpansion.png" />
<img title="Requires 'New Moon' expansion" class="newMoonExpansion" src="img/expansion/newMoonExpansion.svg" />
</div>
</label>
</li>
</ul>
<div id="gameTips" class="gameTips" style="display: none;">
</div>
<div id="timer" class="timer" style="display: none;">
</div>
<div id="gameImgs" class="gameImgs">
</div>
<div>
<button id="firstNight" class="button">First Night</button>
<button id="reset" class="button" style="display: none;">Reset</button>
<button id="otherNight" class="button" style="display: none;">Night</button>
<button id="next" class="button" style="display: none;">Next</button>
</div>
</div>
<div class="settings">
<img id="settingsIcon" src="img/settings.svg" alt="settings" />
<div id="settingsHolder" style="display: none;"></div>
</div>
</body>
</html>