-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (56 loc) · 1.75 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
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>Travel Recommendation</title>
<link rel="stylesheet" href="travel_recommendation.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<nav class="navbar">
<div class="logo">
<img src="logo.png" alt="TravelBloom Logo" />
<span>TravelBloom</span>
</div>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="./about_us.html">About Us</a></li>
<li><a href="./contact_us.html#">Contact Us</a></li>
</ul>
<div class="search-bar">
<input
type="text"
placeholder="Enter a destination or keyword"
id="searchInput"
/>
<button id="searchBtn">Search</button>
<button id="clearBtn">Clear</button>
</div>
</nav>
<div class="container">
<div class="introduction">
<div class="hero-text">
<h1>EXPLORE<br />DREAM<br />DESTINATION</h1>
</div>
<div class="hero-subtext">
<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>
</div>
<button class="cta-btn">BOOK NOW</button>
</div>
<div id="result"></div>
</div>
<div class="social-media">
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-instagram"></a>
<a href="#" class="fa fa-youtube"></a>
</div>
<script src="travel_recommendation.js"></script>
</body>
</html>