-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (21 loc) · 791 Bytes
/
index.html
File metadata and controls
22 lines (21 loc) · 791 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>Drawing page</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta charset="utf-8" />
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script type='text/javascript' src='https://cdn.firebase.com/v0/firebase.js'></script>
<script type="text/javascript" src="communicationClass.js"></script>
<script type="text/javascript" src="drawingClass.js"></script>
<script type="text/javascript" src="main.js"></script>
<link rel="stylesheet" href="design.css" />
</head>
<body>
<canvas id="content">
</canvas>
<div id="share">
<span>url to share:</span><input type="text" value="" id="urlinput">
</div>
</body>
</html>