-
Notifications
You must be signed in to change notification settings - Fork 5
/
rules.html
71 lines (57 loc) · 2.69 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
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Safety - The Ithaca Zoo</title>
<link rel="stylesheet" type="text/css" href="styles/site.css">
<!-- Source: https://openclipart.org/detail/274587/zebra-head -->
<link rel="icon" href="images/favicon.svg">
</head>
<body>
<!-- Accessibility: Cookie banner should be the first thing that loads. -->
<div id="cookie-banner" class="banner">
<p>This website uses cookies to ensure you get the best experience on our website.</p>
<button id="cookie-accept-button" class="button" aria-label="accept cookies">Accept</button>
</div>
<header>
<h1><a href="index.html">🦓 Ithaca Zoo</a></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>
<main>
<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>
</main>
<script src="scripts/jquery-3.7.1.js"></script>
<script src="scripts/cookie-banner.js"></script>
</body>
</html>