-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 710 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 710 Bytes
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>WireWorld</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<h1>WireWorld</h1>
<canvas id="game" width="300" height="100">
Your browser does not support HTML5 canvas.
</canvas>
<p id="status"> </p>
<p>
<button id="reset">Reset</button>
<button id="runStep">Run Step</button>
<button id="run">Run</button>
</p>
</body>
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
<script src="wireworld.js" type="text/javascript"></script>
</html>