-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.33 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.33 KB
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
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Open Space</title>
<link rel="stylesheet" href="index.css">
<script async src="index.js"></script>
</head>
<body>
<div class="space">
<div class="planet-area">
<img class="rocket" src="rocket.png">
<img class="planet" src="mars.png">
</div>
<div class="control-panel">
<div class="control-panel__inner">
<input id="passwordb" type="password" class="textbox">
<input id="okb" type="button" value="ok" class="ok-button">
<div class="check-buttons">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
</div>
<div class="levers">
<input type="range" min="1" max="100" value="50">
<input type="range" min="1" max="100" value="50">
<input type="range" min="1" max="100" value="50">
<input type="range" min="1" max="100" value="50">
<input type="range" min="1" max="100" value="50">
</div>
<input type="button" value="Launch" class="launch-button">
</div>
</div>
</div>
</body>
</html>