forked from leqiangzhu/resort-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (49 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<link href="css/styles.css" rel="stylesheet" type="text/css">
<title>Waterfall Resort!</title>
<style>
ul#menu li {
display:inline;
}
</style>
</head>
<body>
<h1>Welcome to the Waterfall Resort</h1>
<img src="img/mainpic.jpg" alt="A photo of the resort.">
<h2>The best vacation spot in the Pacific Ocean!</h2>
<p>Click on the links below for more information</p>
<ul id="menu">
<li>
<a href="accommodations.html">
ACCOMMODATIONS
</a>
</li>
<li>
<a href="activities.html">
ISLAND ACTIVITIES
</a>
</li>
<li>
<a href="travel.html">
TRAVEL
</a>
</li>
<li>
<a href="pictures.html">
ISLAND VIEWS
</a>
</li>
<li>
<a href="contact.html">
CONTACT US
</a>
</li>
</ul>
</body>
</html>