-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
89 lines (72 loc) · 2.51 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
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Home - The Ithaca Zoo</title>
<link rel="stylesheet" type="text/css" href="styles/site.css">
</head>
<body>
<header>
<picture>
<!-- Source: original work (Student's Name) -->
<img alt="" src="images/zoo-logo.png" width="200" height="214">
</picture>
<h1>Ithaca Zoo</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="popular.html">Popular Animals</a></li>
<li><a href="rules.html">Safety</a></li>
</ul>
</nav>
</header>
<h2>Welcome!</h2>
<p>
We're so excited to share our love of animals with our neighbors, and we hope you come visit soon. Whether you stop
by once while you're passing through town or come multiple times a week, you'll find the Ithaca Zoo is ready to
welcome you with open arms.
</p>
<p>
<strong>Advisory: due to upcoming hot weather, we advise all guests to make sure they bring sunscreen for protection
from ultraviolet rays and a water bottle to help stay hydrated.</strong> We have water fountains all over the zoo
where you can fill up. Just look for the signs that say "Watering Hole."
</p>
<h2>Events</h2>
<p>
Our next event is the Red Panda Meet and Greet, where you have a chance to meet our favorite little bundles of joy,
<em>Red</em> and <em>Fluffy</em>. This will take place next Saturday from 1:00-4:30 PM. <strong>There will be a
line</strong>, so come early.
</p>
<blockquote>
<p>
The Red Panda Meet and Greet was the most fun my kids had all summer! - John Smith Sr.
</p>
</blockquote>
<blockquote>
<p>
Meeting Apple and Fluffy was cool. - John Smith Jr.
</p>
</blockquote>
<h2>Sections of the Zoo</h2>
<ul>
<li>Indoor Ocean</li>
<li>Tangled Swamp</li>
<li>Hidden Jungle</li>
<li>Alpine Mountains</li>
<li>Central Savanna</li>
<li>Arid Desert</li>
</ul>
<h2>Featured Animals</h2>
<dl>
<dt>Cryptopsaras Couesii</dt>
<dd>Commonly called the Triplewart Seadevil, this angler fish that uses a glowing lure on its head to attract prey.
</dd>
<dt>Ailurus Fulgens</dt>
<dd>Commonly called the Red Panda, this fluffy creature is actually more closely related to raccoons than giant
pandas.</dd>
<dt>Giraffa Camelopardalis Reticulata</dt>
<dd>Although there are many kinds of giraffes in the wild, this is the kind most commonly found in zoos around the
world.</dd>
</dl>
</body>
</html>