textadventure/index.html
2021-07-09 13:57:51 -07:00

14 lines
No EOL
391 B
HTML

<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Text Adventure</h1>
<div id="userText">
<p></p>
</div>
<p id="command">></p><input type="text" id="userInput" name="inputBox">
<script src="verbhandler.js"></script>
<script src="inventory.js"></script>
<script src="locations.js"></script>
<script src="index.js"></script>
</body>