*.js: test for testing result creation
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
cb0e40ed11
commit
b41568337b
4 changed files with 72 additions and 42 deletions
85
index.html
85
index.html
|
@ -1,47 +1,50 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Is this a Critter?</title>
|
||||
</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>
|
||||
</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="startOver">
|
||||
<p>
|
||||
<button id="startOverButton">Start over</button>
|
||||
</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;
|
||||
}
|
||||
#footer {
|
||||
bottom: 2px;
|
||||
height: 40px;
|
||||
margin-top: 40px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
</body>
|
||||
<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;
|
||||
}
|
||||
#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