2023-09-15 00:38:32 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2023-09-15 11:02:14 +00:00
|
|
|
<title>Is this a Critter?</title>
|
2023-09-15 00:38:32 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-09-15 16:41:45 +00:00
|
|
|
<div id="isCritter">
|
2023-09-28 17:46:18 +00:00
|
|
|
<h3>Is this a Critter?</h3>
|
2023-09-15 11:02:14 +00:00
|
|
|
<p id="animal-name">what about?:</p>
|
2023-09-15 01:35:41 +00:00
|
|
|
<button id="isCritterButton">Is Critter</button>
|
|
|
|
<button id="isNotCritterButton">Is <b>not</b> Critter</button>
|
2023-09-15 16:41:45 +00:00
|
|
|
</div>
|
2023-09-15 00:38:32 +00:00
|
|
|
|
2023-09-15 16:41:45 +00:00
|
|
|
<div id="startOver">
|
2023-09-15 12:26:01 +00:00
|
|
|
<p>
|
|
|
|
<button id="startOverButton">Start over</button>
|
|
|
|
</p>
|
2023-09-15 16:41:45 +00:00
|
|
|
</div>
|
2023-09-15 12:26:01 +00:00
|
|
|
|
2023-09-15 16:41:45 +00:00
|
|
|
<div id="footer">
|
|
|
|
© 2023. All rights reserved. <a href="mailto:isacritter@hashbangbash.com">isacritter</a>; <a href="https://paypal.me/vbatts/1" target="_blank">keep isacritter alive</a>
|
|
|
|
</div>
|
|
|
|
<script src="/asset/frontend.js"></script>
|
|
|
|
<style type="text/css">
|
2023-09-28 17:46:18 +00:00
|
|
|
#animal-name {
|
|
|
|
font-size: 25px;
|
|
|
|
}
|
2023-09-15 16:41:45 +00:00
|
|
|
#isCritter {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#startOver {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#footer {
|
|
|
|
bottom: 2px;
|
|
|
|
height: 40px;
|
|
|
|
margin-top: 40px;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
2023-09-15 00:38:32 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|