-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
23 lines (23 loc) · 811 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
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Canavas Fun</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="css/canvas-fun.css">
</head>
<body>
<canvas id="screen" width="800px" height="450px"></canvas>
<!-- let us add some ui elements -->
<div class="slidecontainer">
<p>SETTINGS</p>
<p>My Value</p>
<input type="range" min="1" max="11" value="5" class="slider" id="my-first-value">
<p>Switch</p>
<label class="switch">
<input type="checkbox" id="colors">
<span class="slide-switch round"></span>
</label>
</div>
<script src="js/canvas-fun.js"></script>
</body>
</html>