-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (18 loc) · 792 Bytes
/
index.html
File metadata and controls
20 lines (18 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html>
<head>
<title>Realtime Puzzle</title>
<link href="css/puzzle.css" rel="stylesheet"/>
<script type='text/javascript' src='https://cdn.firebase.com/v0/firebase.js'></script>
</head>
<body>
<p>Realtime puzzle using <a href="http://firebase.com">Firebase.io</a> (only tested in chrome)</p>
<canvas id="puzzle" width="1024" height="512"></canvas>
<button onclick="initImages()">Reset</button>
<form>
<input type="text" required />
<button type="submit">Send</button>
</form>
</body>
<script src="js/puzzle.js"></script>
</html>