-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiscover Sydney_Guided Bike Tours.html
40 lines (40 loc) · 1.37 KB
/
Discover Sydney_Guided Bike Tours.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sydney Bike Tours</title>
<link rel="stylesheet" href="Responsive Travel Website Styling.css">
</head>
<body>
<header>
<div class="header-content">
<h1>Sydney Bike Tours</h1>
</div>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<section class="tour-package">
<h2>City Tour</h2>
<img src="city_tour_Sydney.jpg" alt="Biking through Sydney city">
<p>Explore the city landmarks on two wheels.</p>
<a href="#" class="button">Book Now</a>
</section>
<section class="tour-package">
<h2>Beach Tour</h2>
<img src="beach_tour.jpg" alt="Biking at the beach">
<p>Feel the sea breeze as you ride along the coast.</p>
<a href="#" class="button">Learn More</a>
</section>
</main>
<footer>
<p>Contact us: <a href="mailto:[email protected]">[email protected]</a> | <a href="tel:+61234567890">+61 2 3456 7890</a></p>
</footer>
</body>
</html>