is-critter/wwwroot/index.html
Vincent Batts dbc7509fbd
All checks were successful
Basic Checking / Explore-Gitea-Actions (push) Successful in 28s
*: stubbing out a page for "what's this about?"
Fixes #2

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2023-10-02 14:50:29 -04:00

58 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Is this a Critter?</title>
<meta name="description" content="Is this a critter? Trying to agree on what a critter even is requires a bit of sampling. Help by contributing your vote on what a critter even is."/>
</head>
<body>
<div id="isCritter">
<h3>Is this a Critter?</h3>
<p id="animal-name">what about?:</p>
<button id="isCritterButton">Is Critter</button>
<button id="isNotCritterButton">Is <b>not</b> Critter</button>
</div>
<div id="startOver">
<p>
<button id="startOverButton">Start over</button>
</p>
</div>
<div id="whatsThisAllAbout">
<p>
<a id="whatsThisAllAboutLink" href="what.html">(what's this all about?)</a>
</p>
</div>
<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">
#animal-name {
font-size: 25px;
}
#isCritter {
text-align: center;
}
#startOver {
text-align: center;
}
#whatsThisAllAbout {
text-align: center;
}
#footer {
bottom: 2px;
height: 40px;
margin-top: 40px;
text-align: center;
vertical-align: middle;
position: fixed;
width: 100%;
}
</style>
</body>
</html>