-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.79 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!-- This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
Copyright 2018 Marco De Nicolo
-->
<!DOCTYPE html>
<html>
<head>
<title>Dazzle WebView</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="general.css">
<script type="text/javascript" src="class.js"></script>
<script type="text/javascript" src="conn.js"></script>
<script type="text/javascript" src="draw.js"></script>
<script type="text/javascript" src="events.js"></script>
</head>
<body>
<div class="container">
<form>
<div class="container" id="inputBox">
</div>
</form>
<table>
<tr>
<td class="extcol">
<div class="container">
<div class="container">
<p id="time">
</p>
</div>
<div class="container">
<div id="points">
</div>
</div>
</div>
</td>
<td class="intcol">
<div class="container">
<canvas class="canv border" id="myCan" width="200" height="200"></canvas>
</div>
</td>
<td class="extcol">
</td>
</tr>
</table>
</div>
</body>
</html>