assassin-bug/src/game/index.html

22 lines
527 B
HTML
Raw Normal View History

2021-11-03 11:08:40 +00:00
<html>
<head>
<title>Assassin bug</title>
</head>
<body>
<h1>Assassin bug</h1>
2021-11-05 22:22:28 +00:00
<div id="play-area" hidden=true>
<div aria-live="polite" id="output-area"></div>
<input type="text" id="input-area" placeholder="Type command" />
</div>
<div id="save-game-found" hidden=true>
<h1>Found a save game</h1>
<button id="load-save-game">Load</button>
<button id="start-new-game">New</button>
</div>
<div id="before-play">
<h1>Welcome</h1>
<button id="begin">Begin the adventure</button>
</div>
2021-11-03 11:08:40 +00:00
</body>
</html>