-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (22 loc) · 936 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
<!doctype html><!-- html5 -->
<html>
<head>
<title>linktetrad</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script type="text/javascript" src="js/core.js"></script>
<script type="text/javascript" src="js/board.js"></script>
<script type="text/javascript" src="js/cell.js"></script>
<script type="text/javascript" src="js/piece.js"></script>
<script type="text/javascript" src="js/player.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<h1>linktetrad</h1>
<canvas id="mainCanvas" width="600" height="300"></canvas>
<br/>
<p id="turn">Player 1's turn!</p>
<p>© 2010 Cortland Klein <<a href="mailto:[email protected]">[email protected]</a>></p>
<button>Reload</button>
</body>
</html>