forked from cornell-info1300-2023fa/activity-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.html
59 lines (48 loc) · 2.15 KB
/
rules.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Safety - 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>Zoo Safety</h2>
<p>
It is <em>very important</em> for all guests to follow the rules during their stay at the zoo, both for their safety
and the safety of the animals. As the old saying goes, <q>Better safe than sorry!</q>
</p>
<ol>
<li><em>Keep any children in your sight at all times to ensure they are behaving safely.</em></li>
<li>If you see anyone in distress, be sure to alert the zoo staff.</li>
<li><em>Absolutely no smoking on zoo grounds.</em>. Smoking is a health hazard for fellow guests and the animals.
Please see <a
href="https://www.cdc.gov/tobacco/data_statistics/fact_sheets/health_effects/effects_cig_smoking/index.htm">this
guide from the CDC on health issues related to smoking</a>.</li>
<li>Be kind and courteous to the others guests. Everyone is here to have a fun time.</li>
<li>Please do not cut in line at the concessions stands. Wait your turn.</li>
<li>Throw away all trash in the designated trash bins. Leave the zoo cleaner than you found it! In the words of
zookeeper Albert: <q>Don't be mean, keep the zoo clean!</q></li>
</ol>
<h2>Safety Information for Interacting With Animals</h2>
<ol>
<li><em>Do not disturb or harass the animals.</em> You will be asked to leave the zoo.</li>
<li>The only time it is acceptable to feed the animals is under the supervision of a zookeeper at one of the
appointed stations. Look for the sign with a giraffe eating a green leaf.</li>
<li>If you want to take pictures of the animals, please turn off the flash.</li>
</ol>
</body>
</html>