generated from github/codespaces-blank
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
34 lines (33 loc) · 864 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
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.2.0/p5.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="p5.min.js"></script>
<meta charset="utf-8">
<title>Orange Canvas</title>
<link rel="icon" type="image/x-icon" href="https://i.ibb.co/kqBpWgY/bgorange.png">
</head>
<body>
<h1>Orange Canvas</h1>
<h4>Color Must Be Set Before Drawing</h4>
<br>
<br>
<br>
<h3>Brush Size</h3>
<input type="number" id="numberInput">
<br>
<h3>Brush Color</h3>
<input type="color" id="colorInput">
<br>
<h3>Save Canvas</h3>
<input type="button" id="save">
<br>
<h3>Clear Canvas</h3>
<input type="button" id="clear">
<br>
<br>
<br>
<script src="sketch.js"></script>
</body>
</html>