textadventure/index.html

13 lines
350 B
HTML
Raw Normal View History

2021-07-09 19:56:23 +00:00
<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="index.js"></script>
<script src="inventory.js"></script>
</body>