-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1 KB
/
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
<!DOCTYPE html>
<html>
<head>
<title>My first experiment with HTML5 canvas</title>
</head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<body>
<div class="center">
<canvas id='c'></canvas>
<div class="controls">
<div class="controls_title"><strong>CONTROLS</strong></div>
<div class="items">Color<input id="color" type="color" name="" value="#4dc4a8"></div>
<!-- <label for="color">shape</label>
<input id="shape" type="button" name="" value="shape"> -->
<div class="items">Background color<input id="bgcolor" type="color" name="" value="#ffffff"></div>
<div class="items">Size<input id="size" type="range" name="" value="40"></div>
<div id="save">Download your maze</div>
</div>
</div>
<footer>
<p>"Canvas experiment" created by <strong><a href="https://github.com/subhban01" style="text-decoration: none;color: #000;">Subhadeep</a></strong></p>
</footer>
<script type="text/javascript" src='script.js' ></script>
</body>
</html>