catvdog

Silly taxonomy quiz

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 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>
        <b style="color:red">READ THESE INSTRUCTIONS!</b> 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>