-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_us.html
More file actions
58 lines (49 loc) · 2.27 KB
/
about_us.html
File metadata and controls
58 lines (49 loc) · 2.27 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!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>About Us Zoosort</title>
</head>
<body>
<main id="about_us">
<header>
<a href="./index.html"><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>
<section class="content">
<img src="./images/adventure-africa-bush-861339.jpg" alt="about_us">
<section class="description">
<p>About Us</p>
<p>Zoosort is a newly-founded family-owned resort.
Located in heart of the Blackhorse Wildlife Park, Zoosort offers their guests once in a lifetime experience of waking up with featured animals in one of the themed rooms, namely underwater room, wetland room, grassland room and cave room.
We takes pride in our animals. As a non-for-profit organization, the aim of our resort is to provide world-class habitate for our animals and continue to contribute in wildlife conservation. </p>
</section>
</section>
<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>
<li><a id="reference" href="#">REFERENCE</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>