express: css, copyright, and a donation link
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
7116cc9eb1
commit
20e560c55c
1 changed files with 25 additions and 3 deletions
|
@ -5,18 +5,40 @@
|
||||||
<title>Is this a Critter?</title>
|
<title>Is this a Critter?</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<center>
|
<div id="isCritter">
|
||||||
<h1>Is this a Critter?</h1>
|
<h1>Is this a Critter?</h1>
|
||||||
<p id="animal-name">what about?:</p>
|
<p id="animal-name">what about?:</p>
|
||||||
<button id="isCritterButton">Is Critter</button>
|
<button id="isCritterButton">Is Critter</button>
|
||||||
<button id="isNotCritterButton">Is <b>not</b> Critter</button>
|
<button id="isNotCritterButton">Is <b>not</b> Critter</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="startOver">
|
||||||
<p>
|
<p>
|
||||||
<button id="startOverButton">Start over</button>
|
<button id="startOverButton">Start over</button>
|
||||||
</p>
|
</p>
|
||||||
</center>
|
</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>
|
<script src="/asset/frontend.js"></script>
|
||||||
|
<style type="text/css">
|
||||||
|
#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>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue