Add various niceties to index.html

pull/1/head
~erin 2021-07-10 18:16:43 -04:00
parent 65eb297d18
commit d02600d960
Signed by untrusted user: erin
GPG Key ID: DA70E064A8C70F44
1 changed files with 18 additions and 0 deletions

View File

@ -1,15 +1,33 @@
<html lang="en-US">
<head> <head>
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
<!-- metadata -->
<meta charset="UTF-8">
<meta name="author" content="Luna">
<meta name="og:title" content="Text Adventure">
<meta name="og:description" content="A small text adventure made in javascript by a beautiful girl">
<meta name="og:image" content="/greaterthans.png">
<link rel="icon" href="/greaterthans.png">
</head> </head>
<body> <body>
<!-- top of terminal window -->
<div id="roundedtop"><h2 id="terminal">Terminal</h2><h2 id="fakebuttons">_ &#9744 X</h2></div> <div id="roundedtop"><h2 id="terminal">Terminal</h2><h2 id="fakebuttons">_ &#9744 X</h2></div>
<!-- the main text area -->
<div id="userText"> <div id="userText">
<p></p> <p></p>
</div> </div>
<!-- user input -->
<input type="text" id="userInput" name="inputBox" placeholder="Command"> <input type="text" id="userInput" name="inputBox" placeholder="Command">
<!-- info box at the bottom -->
<div id="infobox"><h4>Info:</h4><p>This game and website are a complete work in progress. None of this is final. If you have any suggestions feel free to contact <a href="https://kitty.lgbt/about/" alt="Luna's contact info">Luna</a>.</p></div> <div id="infobox"><h4>Info:</h4><p>This game and website are a complete work in progress. None of this is final. If you have any suggestions feel free to contact <a href="https://kitty.lgbt/about/" alt="Luna's contact info">Luna</a>.</p></div>
<!-- load scripts -->
<script src="verbhandler.js"></script> <script src="verbhandler.js"></script>
<script src="inventory.js"></script> <script src="inventory.js"></script>
<script src="locations.js"></script> <script src="locations.js"></script>
<script src="index.js"></script> <script src="index.js"></script>
</body> </body>
</html>