-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 921 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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- meta info here -->
<title>Werewolf</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<script type="text/javascript" src="js/easel.js" ></script>
<script type="text/javascript" src="js/hero.js" ></script>
<script type="text/javascript" src="js/game.js" ></script>
</head>
<body>
<div id="game">
<canvas id="canvas" width="500" height="500">
<p id="nocanvas" class="copy">Your browser must support <span class="code">canvas</a> to view this demo. Your browser must have JavaScript enabled.</p>
</canvas>
</div>
<div id="menu">
<div id="title">
<h1>Werewolf</h1>
<div id="score"> 0 </div>
</div>
</div>
</body>
</html>