-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>Codenames</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet" media="screen">
<link rel="stylesheet/less" type="text/css" href="style.less" />
</head>
<body>
<h1><a href="http://codenamesgame.com/">Codenames</a></h1>
<button class="lang de" onclick="loadWords('de')"></button>
<button class="lang en" onclick="loadWords('en')"></button>
<button class="text" id="modeButton" onclick="switchMode()">4x5</button>
<button class="text" onclick="resetState()">Reset</button>
<button class="text" onclick="generateWords()">Generate</button>
<div id="cardContainer"></div>
<script src="bower_components/less/dist/less.min.js"></script>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="bower_components/lodash/dist/lodash.min.js"></script>
<script src="main.js"></script>
</body>
</html>