Dave's Adventure

A starting point to teach a friend how to make text adventures

by Soviut

HTML

<div id="console">Hey Dave, you wake up in a field next to a white house...now use this template to make a game.</div>

<form id="form">
  <input type="text"/>
  <button>Go</button>
</form>

CSS

#console {
  min-height: 300px;
  
  font-family: monospace;
  background: #333;
  color: #CCC;
}

form {
  padding-top: 10px;
}