30 lines
643 B
HTML
30 lines
643 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>Textual game</title>
|
|
<meta name="description" content="The HTML5 Herald">
|
|
<meta name="author" content="SitePoint">
|
|
|
|
<link rel="stylesheet" href="css/styles.css?v=1.0">
|
|
|
|
<style type="text/css">
|
|
.choice-btn {
|
|
padding: 5px 10px;
|
|
border-radius: 3px;
|
|
border: 1px solid black;
|
|
margin: 2px;
|
|
}
|
|
|
|
.choice-btn:hover {
|
|
background-color: #ccc;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 id="active-node"></h1>
|
|
<div id="choices"></div>
|
|
<script src="./bundle.js"></script>
|
|
</body>
|
|
</html> |