-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.21 KB
/
Copy pathindex.html
File metadata and controls
44 lines (39 loc) · 1.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Travel Recommendations — Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<nav class="nav">
<a class="brand" href="index.html">Travelly</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="intro">
<h1>Welcome to Travelly</h1>
<p>Find curated travel recommendations for Beaches, Temples, and Countries.</p>
</section>
<section class="search">
<input id="searchInput" placeholder="Search (e.g. beaches, temples, countries)" />
<div class="buttons">
<button id="searchBtn">Search</button>
<button id="clearBtn">Clear</button>
</div>
</section>
<section id="results" class="results">
<!-- Results injected here -->
</section>
</main>
<footer class="site-footer">© Travelly</footer>
<script src="script.js"></script>
</body>
</html>