-
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cats vs. Dogs Quiz</title>
<style>
body {
width: min(1200px, 90%);
margin: auto;
text-align: center;
}
</style>
</head>
<body>
<h1>Cats vs. Dogs Quiz</h1>
<p>
In taxonomy, the order Carnivora is divided into two suborders: <b>Feliformia (generalized kitties)</b> and <b>Caniformia (generalized doggos)</b>. Your task is to categorize the following mammals into those two categories, or <b>neither</b> if the mammal doesn't belong in Carnivora.
</p>
<h2 id="name"></h2>
<p id="binom"></p>
<p id="tagline"></p>
<img id="img" height="300px">
<img id="img2" height="300px">
<p>
<button id="button0" onclick="answered(0)">Generalized kitty</button>
<button id="button1" onclick="answered(1)">Generalized doggo</button>
<button id="button2" onclick="answered(2)">Neither</button>
</p>
<script src="script.js"></script>
</body>
</html>