-
Notifications
You must be signed in to change notification settings - Fork 0
/
practix.html
41 lines (36 loc) · 1.12 KB
/
practix.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code art</title>
<link rel="stylesheet" href="css/practix.css">
</head>
<body>
<canvas id="myCanvas" height="400" width="400"></canvas>
<script src="src/practix.js"></script>
<h3>CANVAS</h3>
<p>Implementation of "Code art" Udemy course</p>
<section>
<p>
<ul>
<li>
<button onclick="pen()" id="pen">pen</button>
</li>
<li>
<button onclick="eraser()" id="eraser">eraser</button>
</li>
<li>
<button id="color">colors</button>
<!-- <option value="1"></option> -->
</li>
<li>
<a href="https://www.google.com" id="trialButton">GOOGLE</a>
</li>
</ul>
</p>
<p><a href="/">back to home</a></p>
</section>
</body>
</html>