is-critter/express/index.html
Vincent Batts 7116cc9eb1
express: center things
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2023-09-15 12:31:26 -04:00

22 lines
470 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Is this a Critter?</title>
</head>
<body>
<center>
<h1>Is this a Critter?</h1>
<p id="animal-name">what about?:</p>
<button id="isCritterButton">Is Critter</button>
<button id="isNotCritterButton">Is <b>not</b> Critter</button>
<p>
<button id="startOverButton">Start over</button>
</p>
</center>
<script src="/asset/frontend.js"></script>
</body>
</html>