forked from sjlevin/codenames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 954 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="codenames.css">
<script src="https://cdn.rawgit.com/davidbau/seedrandom/released/seedrandom.min.js"></script>
<script src="./wordlist.js"></script>
<script src="./codenames.js"></script>
<title>Krycí jména</title>
</head>
<body>
<div id="upperDiv">
<button type="button" onclick="newGame();">Nová hra</button>
<button type="button" onclick="loadGame();">Nahrát hru</button>
<button id="AnswersButton" type="button" onclick="showAnswers();" value="hidden">Zobrazit řešení</button>
<button id="ToggleInvertedButton" type="button" onclick="toggleInvertedText();" value="disabled">Oboustranné karty</button>
<Text id="Text1"></Text>
</div>
<div id="tableDiv">
<table id="Table1"> </table>
</div>
</body>
</html>