-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrules.html
More file actions
61 lines (54 loc) · 1.91 KB
/
Copy pathrules.html
File metadata and controls
61 lines (54 loc) · 1.91 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
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rules</title>
<link href="css/rules.css" rel="stylesheet">
<link href="css/fullgame.css" rel="stylesheet">
</head>
<body>
<img class="img" src="images/rain.jpg">
<div class="navbar">
<a href="index.html">
<button class="main-page-button" >
main page
</button>
</a>
<a href="pick-animal.html">
<button class="rules-button" >
play
</button>
</a>
<a href="exit.html">
<button class="exit-button" >
exit
</button>
</a>
</div>
<div class="spacer">
</div>
<div class="rules-container">
<h3>How to play</h3>
<ul class="rules">
<li>Pick plants and animals to form your ecosystem!</li>
<ul>
<li>Hovering over the animal provides you with some interesting facts!</li>
<li>Further information about the animal can be obtained by clicking the animal name.</li>
</ul>
<li>When you're ready, click on the 'submit' button, and watch the simulation take place!</li>
<li>See how long your ecosystem lasts before an integral part of the biodiversity is lost.</li>
<li>Take note of what you see.
<ul>
<li>What does a healthy ecosystem look like?</li>
<li>Which animals are the most susceptible? Why might that be?</li>
<li>How does an animal's starting population affect the ecosystem?</li>
<li>Are there any strategies to producing a healthy, balanced ecosystem?</li>
</ul>
</li>
<li>At the end of the simulation, you'll have the option of taking a small quiz to test your knowledge on
plants, animals, and their relationship with each other!</li>
<li>When you're ready to play, hit the "play" button at the top of the screen! Good luck!</li>
</ul>
</div>
</body>
</html>