textadventure/index.html

34 lines
1.2 KiB
HTML
Raw Normal View History

2021-07-10 22:16:43 +00:00
<html lang="en-US">
2021-07-09 19:56:23 +00:00
<head>
<link rel="stylesheet" href="style.css">
2021-07-10 22:16:43 +00:00
<!-- 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">
2021-07-09 19:56:23 +00:00
</head>
<body>
2021-07-10 22:16:43 +00:00
<!-- top of terminal window -->
2021-07-10 03:47:57 +00:00
<div id="roundedtop"><h2 id="terminal">Terminal</h2><h2 id="fakebuttons">_ &#9744 X</h2></div>
2021-07-10 22:16:43 +00:00
<!-- the main text area -->
2021-07-09 19:56:23 +00:00
<div id="userText">
<p></p>
</div>
2021-07-10 22:16:43 +00:00
<!-- user input -->
2021-07-10 02:59:41 +00:00
<input type="text" id="userInput" name="inputBox" placeholder="Command">
2021-07-10 22:16:43 +00:00
<!-- info box at the bottom -->
2021-07-10 22:03:00 +00:00
<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>
2021-07-10 22:16:43 +00:00
<!-- load scripts -->
2021-07-09 19:56:23 +00:00
<script src="verbhandler.js"></script>
<script src="inventory.js"></script>
2021-07-09 20:57:51 +00:00
<script src="locations.js"></script>
<script src="index.js"></script>
2021-07-10 22:03:00 +00:00
</body>
2021-07-10 22:16:43 +00:00
</html>