forked from ninjabunny/KodeNames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>🔎 codenames</title>
<meta name="description" content="Codenames, a popular word game.">
<meta name="author" content="SitePoint">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<div>
<div id='header'>
<a>🔎 codenames</a>
<span id="redScore"></span>
<span id="blueScore"></span>
<!-- <span id="confirmText">confirm?</span>
<input type="checkbox" id="confirm"> -->
<select id='gameMode'>
<option value="default">default word set</option>
<option value="spanish">spanish word set</option>
<option value="2knouns">2,000 nouns</option>
<option value="movies">top 250 movies</option>
<option value="custom">custom words</option>
</select>
<button id="reset" onclick="fire()">🔄 reset</button>
<button id="spymaster" onclick="spyMaster()">🕵 spy master</button>
<input type="text" id="seed" placeholder="seed" size="8" autofocus>
</div>
</div>
<div id="board"></div>
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script src="scripts/data.js"></script>
<script src="scripts/seedrandom.js"></script>
<script src="scripts/index.js"></script>
<script src="scripts/analytics.js"></script>
</body>
</html>