13 lines
350 B
HTML
13 lines
350 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="index.js"></script>
|
||
|
<script src="inventory.js"></script>
|
||
|
</body>
|