-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.12 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WanderWise – Home</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<header>
<h1>Welcome to WanderWise</h1>
<p>Your personalized travel guide to unforgettable destinations.</p>
</header>
<section>
<h2>🏖️ Beach Recommendations</h2>
<img src="images/beach1.jpg" alt="Beach 1" />
<img src="images/beach2.jpg" alt="Beach 2" />
</section>
<section>
<h2>🛕 Temple Recommendations</h2>
<img src="images/temple1.jpg" alt="Temple 1" />
<img src="images/temple2.jpg" alt="Temple 2" />
</section>
<section>
<h2>🌍 Country-Based Recommendations</h2>
<img src="images/country1.jpg" alt="Country 1" />
<img src="images/country2.jpg" alt="Country 2" />
</section>
<script src="script.js"></script>
</body>
</html>