*: stubbing out a page for "what's this about?"
All checks were successful
Basic Checking / Explore-Gitea-Actions (push) Successful in 28s
All checks were successful
Basic Checking / Explore-Gitea-Actions (push) Successful in 28s
Fixes #2 Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
31408d4536
commit
dbc7509fbd
5 changed files with 69 additions and 6 deletions
58
wwwroot/index.html
Normal file
58
wwwroot/index.html
Normal file
|
@ -0,0 +1,58 @@
|
|||
<!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>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue