-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (76 loc) · 2.83 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
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
80
<!DOCTYPE html>
<html lang="en">
<head>
<!-- When declaring <meta charset="utf-8">, I'm actually telling the browser Character_set encoding, which is utf-8.This should be included at all times. -->
<meta charset="utf-8">
<title> Melbourne Travel</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<img src="melbournebridge.jpg"
alt="melbournebridge"
width="800" height="300">
<h1>Melbourne Travel</h1>
</header>
<!-- Creating a nav bar here to help the user to navigate -->
<nav>
<a href="index.html">Home</a>
<a href="tour.html">Tours</a>
<a href="wilson.html">Wilson's Promotory Wildlife Park</a>
<a href="coffee.html">Melbourne Coffee Tour</a>
<a href="contact.html">Contact</a>
</nav><br>
<main>
<h2>Your next adventure in Melbourne is commencing....</h2>
<img src="melbournecity.jpg" alt="melbournecity" width="500" height="350">
<p>Take a guided Hung Hsin's tour while you explore the city of Melbourne.<br>Your ultimate Melbourne local guide is here for you. From trips to food and transportation, we will arrange everything for you. Just sit tight and relax, leave it all to us! </p><br>
<p>When you first arrive, you'll hae to purchase a Myki card at the Flinder's street station. Melbourne has affordable trains and free trams inside the free tram zone. Alternatively, we have taxi drivers that we cooperate with and you can receive a <span style="color:#cc0066">5% discount</span> if you order a taxi from us. How about that! </p>
<h3>Featured tours this week:</h3>
<ul>
<li>The Twelve Apostle</li>
<li>Coffee tour in the CBD</li>
<li>Wilson's Promotory Wildlife Park</li>
</ul>
</main><br>
<table >
<tr>
<th>Trip Name</th>
<th>Date</th>
<th>Time</th>
<th>Cost</th>
</tr>
<tr>
<td>The Twleve Apostles</td>
<td>1/4/2021</td>
<td>Starts from 9am, back at 7pm</td>
<td>359 AUD</td>
</tr>
<tr>
<td>Coffee tour in the CBD</td>
<td>2/4/2021</td>
<td>Starts from 9am, back at 5pm</td>
<td>69 AUD </td>
</tr>
<tr>
<td>Wilson's Promotory Wildlife Park</td>
<td>3/4/2021</td>
<td>Starts from 9am, back at 7pm</td>
<td>389 AUD</td>
</tr>
</table>
<div>
<p><i>For more information, please contact Travel Melbourne on: <strong>0402789654</strong></i></p>
</div>
<footer>
<nav>
<a href="index.html">Home</a> <br>
<a href="tour.html">The Twelve Apostles</a> <br>
<a href="wilson.html">Wilson's Promotory Wildlife Park</a><br>
<a href="coffee.html">Melbourne Coffee Tour</a> <br>
<a href="contact.html">Contact</a> <br>
</nav>
<small><i>Copyright © 2021 <strong>Hung Hsin Ke</strong></i></small>
</footer>
</body>
</html>