-
Notifications
You must be signed in to change notification settings - Fork 0
/
planner.html
60 lines (53 loc) · 1.99 KB
/
planner.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
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Planner - Safar</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a> |
<a href="about.html">About Us</a> |
<a href="agents.html">Local Agents</a>
</nav>
</header>
<main class="planner-container">
<h1>Travel Planner</h1>
<p>Find your dream destination within your budget</p>
<form class="planner-form">
<div class="form-group">
<label for="destination">Choose Destination:</label>
<select id="destination" name="destination" required>
<option value="">Select a destination</option>
<option value="puri">Puri</option>
<option value="bhubaneshwar">Bhubaneshwar</option>
</select>
</div>
<div class="form-group">
<label for="budget">Enter Your Budget (INR):</label>
<input type="number" id="budget" name="budget" min="1000" step="500" required>
</div>
<div class="form-group">
<label for="travel-date">Travel Date:</label>
<input type="date" id="travel-date" name="travel-date" required>
</div>
<div class="form-group">
<label for="travelers">Number of Travelers:</label>
<input type="number" id="travelers" name="travelers" min="1" max="10" required>
</div>
<button type="submit" class="btn">Find Packages</button>
</form>
</main>
<footer>
<p>© 2024 Safar - All Rights Reserved</p>
<nav>
<a href="index.html">Home</a> |
<a href="about.html">About Us</a> |
<a href="agents.html">Local Agents</a>
</nav>
</footer>
</body>
</html>