forked from Real-Dev-Squad/Lift-Simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.27 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
43
44
45
<!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="./src/css/main.css" />
<script src="./src/js/main.js" defer></script>
</head>
<body>
<header>
<h1>Lift Simulation</h1>
</header>
<main>
<section id="action_panel">
<div class="input-group">
<label for="floor_input">Enter Number of Floors: </label
><input id="floor_input" type="number" min="0" />
</div>
<div class="input-group">
<label for="lift_input">Enter Number of Lifts: </label
><input id="lift_input" type="number" min="0" />
</div>
<button id="btn_make_building">Let's Lift!</button>
<button class="hide" id="btn_reset">Reset</button>
</section>
<section id="building">
<span id="default_msg">
That's a lot of empty space! Let's build something here!
</span>
</section>
</main>
<footer>
Made by
<a href="https://github.com/nashitshayan" target="_blank"
>Nashit Shayan Khan</a
>. Click
<a href="https://github.com/nashitshayan/Lift-Simulation" target="_blank"
>here</a
>
to see the code.
</footer>
</body>
</html>