-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (60 loc) · 2.86 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
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Caveat&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap" rel="stylesheet">
<title>Whiteboard</title>
<link rel="icon" href="assets/icon.png">
</head>
<body>
<div class="sidebar">
<header>Whiteboard</header>
<ul>
<li id="thick">
<image src="assets/large_icon.png" height="35px"> <canvas id="1" height="45px" width="8px"></canvas>
</li>
<li id="medium">
<image src="assets/med_icon.png" height="35px"> <canvas id="2" height="45px" width="8px"></canvas>
</li>
<li id="thin">
<image src="assets/small_icon.png" height="35px"> <canvas id="3" height="45px" width="8px"></canvas>
</li>
<li id="eraser">
<image src="assets/eraser_icon.png" height="35px"> <canvas id="4" height="45px" width="8px"></canvas>
</li>
<li id="black" class="black">
<image src="assets/black_icon.png" height="35px"> <canvas id="6" height="45px" width="8px"></canvas>
</li>
<li id="red" class="red">
<image src="assets/red_icon.png" height="35px"> <canvas id="7" height="45px" width="8px"></canvas>
</li>
<li id="orange" class="orange">
<image src="assets/orange_icon.png" height="35px"> <canvas id="8" height="45px" width="8px"></canvas>
</li>
<li id="yellow" class="yellow">
<image src="assets/yellow_icon.png" height="35px"> <canvas id="9" height="45px" width="8px"></canvas>
</li>
<li id="green" class="green">
<image src="assets/green_icon.png" height="35px"> <canvas id="10" height="45px" width="8px"></canvas>
</li>
<li id="blue" class="blue">
<image src="assets/blue_icon.png" height="35px"> <canvas id="11" height="45px" width="8pxv"></canvas>
</li>
<li id="purple" class="purple">
<image src="assets/purple_icon.png" height="35px"> <canvas id="12" height="45px" width="8px"></canvas>
</li>
<li id="clear" class="button">Clear Board</canvas></li>
<li class="button"><a href="https://phildecroos.com" target="_blank">Phil DeCroos</a></li>
</ul>
<script src="bars.js"></script>
</div>
<div id="drawArea">
<canvas id="whiteboard"></canvas>
<script src="whiteboard.js"></script>
</div>
</body>
</html>