-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.78 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
46
47
48
49
50
51
52
53
54
55
<!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="./CSS/styles.css" />
<title>Lift Simulator</title>
</head>
<body>
<header>
<h1 class="welcome__message">welcome to Lift simulator</h1>
<section class="countShow__section">
<h3 class="floor__count"></h3>
<h3 class="lift__count"></h3>
</section>
</header>
<main>
<section class="input__section">
<div class="input__inner__box">
<h2 class="input__heading">Enter Input to start</h2>
<form id="user_input">
<div class="input__fields">
<div>
<label for="floorInput" class="input_labels"
>Enter The Number Of Floors</label
>
<input
type="number"
class="floor__input input_from_user"
name="floorInput"
placeholder="Enter The Number Of Floors"
/>
</div>
<div>
<label for="liftInput" class="input_labels"
>Enter The Number Of Lifts</label
>
<input
type="number"
class="lift__input input_from_user"
name="liftInput"
placeholder="Enter The Number Of Lifts"
/>
</div>
<button type="submit" class="submit__btn">Submit</button>
</div>
</form>
</div>
</section>
<section class="output__section"></section>
</main>
<script src="./JS/index.js"></script>
</body>
</html>