-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (29 loc) · 895 Bytes
/
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Super Simple Pictionary Game</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<button id="erase">Clear Canvas</button>
<!-- Colors Palette/buttons -->
<div class="colors-container">
<button id="white">White</button>
<button id="black">Black</button>
<button id="pink">Pink</button>
<button id="purple">Purple</button>
<button id="blue">Blue</button>
<button id="red">Red</button>
<button id="orange">Orange</button>
<button id="yellow">Yellow</button>
<button id="green">Green</button>
</div>
<button id="download">Download Drawing</button>
<canvas width=600 height=300></canvas>
<!-- <canvas></canvas> -->
<!-- partial -->
<script src='https://cdn.jsdelivr.net/npm/apexcharts'></script><script src="./script.js"></script>
</body>
</html>