-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BoostBook</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>BoostBook</h1>
<h3><em>Turn low seasons into high returns</em></h3>
<p>Automate Your Hotel Campaigns for High Occupancy Rates</p>
<form id="campaignForm">
<div>
<label for="hotel_name">Hotel Name:</label>
<input type="text" id="hotel_name" name="hotel_name" required>
</div>
<div>
<label for="occupancy_rate">Current Occupancy Rate (%):</label>
<input type="number" id="occupancy_rate" name="occupancy_rate" required>
</div>
<button type="submit">Trigger Campaign</button>
</form>
</div>
<footer>
<p align="center">© 2024 BoostBook. All rights reserved.</p>
<p align="center"><strong>By Vidushi and Bipasha</strong></p>
</footer>
<script src="script.js"></script>
</body>
</html>