is-critter/wwwroot/what.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

42 lines
1,020 B
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>What's this all about?</h3>
</div>
<div id="back">
<p>
<a id="backLink" href="/">(back to the critters)</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>
<style type="text/css">
#isCritter {
text-align: center;
}
#back {
text-align: center;
}
#footer {
bottom: 2px;
height: 40px;
margin-top: 40px;
text-align: center;
vertical-align: middle;
position: fixed;
width: 100%;
}
</style>
</body>
</html>