-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhosonfirst.html
40 lines (33 loc) · 1.12 KB
/
whosonfirst.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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<script src="scripts/json2.js"> </script> <!-- this to make IE work -->
<script src="scripts/jquery-1.10.2.min.js"> </script>
<script src="scripts/jsrender.js"> </script>
<script src="scripts/cm_classes.js"> </script>
<script src="scripts/common.js"> </script>
<script src="scripts/common_buttons.js"> </script>
<script src="scripts/utilities.js"> </script>
<script src="scripts/whosonfirst.js"> </script>
<script src="scripts/old.js"> </script>
<link rel="stylesheet" href="css/crystal_maze.css" />
<link href='http://fonts.googleapis.com/css?family=Port+Lligat+Slab' rel='stylesheet' type='text/css'>
<title>Whos on first</title>
</head>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="lightsout.html">Lights Out!</a></li>
<li><a class="active" href="whosonfirst.html">Whos on first</a></li>
<li><a href="movingblocks.html">Moving blocks</a></li>
</ul>
</div>
<body onload="generate_game()">
<div id="gameboard">
<svg id="svg_area"></svg>
</div>
<div id="scoreboard">
<svg id="score_svg"></svg>
</div>
</body>
</html>