forked from Real-Dev-Squad/Lift-Simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (32 loc) · 1.11 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!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">
<title>Lift Simulation</title>
<link rel="stylesheet" href="./css/main.css">
<script src="./js/main.js" defer> </script>
</head>
<body>
<div id="liftSpace">
<!-- Input section -->
<div class="input-section" id="inputSection">
<div>
<label class="lbl"> No. of floors</label>
<input class="input-1" id="enterFloors" type="number" value="10" placeholder="Enter floors"></input>
</div>
<div>
<label class="lbl"> No. of lifts</label>
<input class="input-2" id="enterLifts" type="number" value="1" placeholder="Enter lifts"></input>
</div>
<button class="generateBtn" id="generateBtn">Start</button>
</div>
<!-- Floor section -->
<div class="topBtn" id="top-btn">
<a href="./index.html" class="backBtn">< Back</a>
</div>
<div class="floor-section"></div>
</div>
</body>
</html>