-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (28 loc) · 981 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
35
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body class="body_backgorund">
<div align="center">
<h1>Paint</h1>
<canvas id="myCanvas" width="800" height="600"></canvas>
<br><br/>
<span>Color -</span>
<input type="text" id="color" placeholder="Color">
<br/>
<br/>
<span>Line width -</span>
<input type="text" id="width" placeholder="Line width">
<br/>
<br/>
<button type="submit" id="clear" onclick="clear_area()">Clear Area</button>
<br/><br/>
<button type="submit" id="fill" onclick="fill_canvas()">Fill canvas</button>
</div>
<script src="main.js"></script>
</body>
</html>