-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Family Trip</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<header>
<h1><i class="fas fa-map-marked-alt"></i> My Family Trip</h1>
</header>
<main>
<nav>
<ul>
<li><a href="#bengaluru">Bengaluru</a></li>
<li><a href="#mysore">Mysore</a></li>
<li><a href="#ooty">Ooty</a></li>
<li><a href="#coimbatore">Coimbatore</a></li>
<li><a href="#palani">Palani</a></li>
<li><a href="#madurai">Madurai</a></li>
</ul>
</nav>
<section id="content">
<!-- Content for each place will be dynamically loaded here -->
</section>
</main>
<footer>
<p>© 2023 My Family Trip App</p>
</footer>
<script src="script.js"></script>
</body>
</html>