Files
story/index.html
T

27 lines
978 B
HTML

<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=false"/>
</head>
<body>
<div class="game">
<div class="status">
<span class="turns">&nbsp;</span>
<span class="score">&nbsp;</span>
</div>
<div class="log">
<p class="log-text"></p>
</div>
<input class="entry" type="text"></input>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://coffeescript.org/v2/browser-compiler/coffeescript.js"></script>
<script src="game_engine.coffee" type="text/coffeescript"></script>
<script src="story.coffee" type="text/coffeescript"></script>
<script src="run_game.coffee" type="text/coffeescript"></script>
</body>
</html>