forked from Montana-Code-School/Simple-HTML-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKomodoGetThere.html
More file actions
40 lines (33 loc) · 1.41 KB
/
KomodoGetThere.html
File metadata and controls
40 lines (33 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>MyFirstWebPage</title>
<link href='https://fonts.googleapis.com/css?family=Playfair+Display:900|Raleway:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="CSS/Komodo.css">
</head>
<body>
<h1>Komodo Island</h1>
<div class="dropdown">
<button class="dropbtn">MENU</button>
<div class="dropdown-content">
<a href="Komodo.html">Home</a>
<a href="KomodoAbout.html">About</a>
<a href="KomodoGetThere.html">Getting There</a>
<a href="KomodoMedia.html">Media</a>
</div>
</div>
<p> </p>
<h2>How to Get There</h2>
<ul>
<li>By flights: There are 1.5 hours daily flights from Bali to Labuan Bajo/Komodo Airport. There is also twice a week flight from Kupang.</li>
<li>By Sea: Inter-island motorboats from Sape in West Nusa Tenggara available everyday (weather permits). Pelni ship from Bali and Lombok every two weeks.</li>
<li>By Land: Transportations from the Flores areas is also available.</li>
</ul>
<p> </p>
<h3>Getting Around</h3>
<p>You have to walk to the hills with designated path. On Komodo Island, you have to climb Mt Ara (538 meters above sea level) for 3-4 hours. On Rinca island, you have to trek for about 1.5 hours.</p>
<p> </p>
<script src="JS/Komodo.js"></script>
</body>
</html>