-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.53 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat+Subrayada&display=swap" rel="stylesheet">
<title>Homepage Zoosort</title>
</head>
<body >
<main id="homepage">
<header>
<a href="#"><img src="./images/logo3.png" alt="Zoosort logo"></a>
<nav class="headernav">
<ul>
<li><a href="./room.html">Room</a></li>
<li><a href="./activity.html">Activity</a></li>
<li><a href="./animals.html">Animals</a></li>
<li><a href="./resort.html">Resort</a></li>
<li><a href="./about_us.html">About Us</a></li>
</ul>
</nav>
</header>
<footer>
<nav class="foottool">
<ul>
<li><a id="book-now" href="#">BOOK A ROOM</a></li>
<li><a id="activity-planner" href="#">ACTIVITY PLANNER</a></li>
<li><a id="contact-us" href="#">CONTACT US</a></li>
</ul>
</nav>
</footer>
</main>
<script src="./js/jquery-3.4.1.min.js"></script>
<script src="./js/script.js"></script>
<script src="./js/scrollClass.min.js"></script>
</body>
</html>