-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 1.82 KB
/
index.html
File metadata and controls
50 lines (47 loc) · 1.82 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TravelBloom - Your Dream Destination Guide</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="logo">
<img src="https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?auto=format&fit=crop&w=80&h=80&q=80" alt="TravelBloom Logo">
<h1>TravelBloom</h1>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
</div>
<div class="search-container">
<input type="text" id="search-input" placeholder="Enter a destination or keyword">
<button id="search-button" type="button">Search</button>
<button id="reset-button" type="button">Reset</button>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h2>EXPLORE DREAM DESTINATION</h2>
<p>It encourages exploration of unfamiliar territories, embracing diverse cultures and landscapes, while pursuing the desired destination that captivates the heart and ignites a sense of wonder.</p>
<a href="#" class="cta-button">BOOK NOW</a>
</div>
<!-- Results Overlay -->
<div id="results" class="results-overlay"></div>
</section>
<!-- Social Media Icons -->
<div class="social-icons">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
<script src="travel_recommendation.js"></script>
</body>
</html>