-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (33 loc) · 1.07 KB
/
index.html
File metadata and controls
43 lines (33 loc) · 1.07 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
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lift Simulation</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="setup">
<h1><b>Lift Simulation</b></h1>
<form id="lift-sim">
<label>Enter floors:</label>
<input type="number" id="floorCount" class="up-field" min="1" step="any" placeholder="Number of floors"
required></input>
<label>Enter lifts:</label>
<input type="number" id="liftCount" class="down-field" min="1" step="any" placeholder="Number of lifts"
required>
<button onclick="initializeSimulation()" class="simulate">Start Simulation</button>
</form>
</div>
<div id="simulation">
<div class="building">
<div class="floors-container">
</div>
<div class="lifts-container">
</div>
</div>
</div>
<script src="index.js">
</script>
</body>
</html>