-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (21 loc) · 892 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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">
<link rel= "stylesheet" href="./index.css">
<link rel= "icon" href="https://image.flaticon.com/icons/png/128/3199/3199937.png">
<title>Drawing App</title>
</head>
<body>
<section>
<div class="drawing-color">
<button id= "red"></button> <button id= "green"></button> <button id= "blue"></button> <button id= "yellow"></button> <button id= "pink"></button> <button id= "black"></button>
</div>
<div class="other-tools"></div> <button id= "clear"></button></div>
<canvas height="450px" width= "650px" style="border-top: 2px solid #ccc; margin-top: 50px;"></canvas>
</section>
<script src= "./index.js"></script>
</body>
</html>