-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·26 lines (26 loc) · 1011 Bytes
/
index.html
File metadata and controls
executable file
·26 lines (26 loc) · 1011 Bytes
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 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="styles.css">
<title>Document</title>
</head>
<body>
<canvas id="garea" width="1000" height="600" alt="UFO game"></canvas>
<input type="range" name="speed_slider" id="slider" min="1" max="10" step="1" value="1">
<div id="speed_div">
<p class="disp" id="speed_disp">Turtle 1 speed</p>
</div>
<input type="range" name="speed_slider2" id="slider2" min="1" max="10" step="1" value="1">
<div id="speed_div2">
<p class="disp" id="speed_disp2">Turtle 2 speed</p>
</div>
<input type="range" name="speed_slider3" id="slider3" min="1" max="10" step="1" value="1">
<div id="speed_div3">
<p class="disp" id="speed_disp3">Turtle 3 speed</p>
</div>
<script src="race.js"></script>
</body>
</html>