-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (74 loc) · 2.59 KB
/
index.html
File metadata and controls
79 lines (74 loc) · 2.59 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel Bloom</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Raleway:wght@700&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<link rel="icon" href="public/logo.svg" type="image/x-icon" />
</head>
<body>
<nav class="navbar">
<div class="nav-inner">
<div class="nav-left">
<img src="public/logo.svg" id="logo" />
<span class="site-title">Travel Bloom</span>
</div>
<div class="nav-toggle" onclick="toggleNav()">☰</div>
<div class="nav-center">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<div class="search-wrapper-mobile">
<div class="search-container">
<input
type="text"
id="search-input-mobile"
placeholder="Enter a destination or keyword" />
<button onclick="search('mobile')">Search</button>
<button onclick="reset()">Clear</button>
<div id="search-results-mobile"></div>
</div>
</div>
</div>
<div class="nav-right">
<div class="search-wrapper">
<div class="search-container">
<input
type="text"
id="search-input-desktop"
placeholder="Enter a destination or keyword" />
<button onclick="search('desktop')">Search</button>
<button onclick="reset()">Clear</button>
</div>
</div>
</div>
</div>
<div id="search-results"></div>
</nav>
<div class="layout-wrapper">
<header class="hero">
<div class="hero-content">
<h1>Adventure Awaits</h1>
<p>
Discover the world one adventure at a time. Let us guide you to your
next unforgettable journey. <br /><br />
At Travel Bloom, we’re here to help you uncover hidden gems, embrace
new cultures, and create memories that last a lifetime. No matter
where your dreams take you, your next story begins here.
</p>
</div>
</header>
</div>
<footer>
<p>
Follow us: <a href="#">Instagram</a> | <a href="#">Facebook</a> |
<a href="#">Twitter</a>
</p>
</footer>
</body>
</html>