-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHotel Dashboard.html
37 lines (37 loc) · 1.28 KB
/
Hotel Dashboard.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>Hotel Dashboard</title>
<link rel="stylesheet" href="style3.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<div class="title">Hotel Dashboard</div>
<div class="content">
<form action="#">
<div class="user-details">
<div class="input-box">
<span class="details">Enter Room Type</span>
<input type="text" placeholder="Enter room type" required>
</div>
<div class="input-box">
<span class="details">Enter Total No. of Rooms</span>
<input type="number" placeholder="Enter number" required>
</div>
<div class="input-box">
<span class="details">Enter No. of Available Rooms</span>
<input type="number" placeholder="Enter available rooms" required>
</div>
<div class="input-box">
<span class="details">Enter Fixed Price of Room</span>
<input type="text" placeholder="Enter price" required>
</div>
</div>
<div class="button">
<input type="submit" value="Submit">
</div>
</form>
</body>
</html>