blob: 42f49842cbcee99c462418390d6c108c4ad6053d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Adventure</title>
<style>
#game-container {
max-width: 800px;
margin: 20px auto;
font-family: monospace;
}
#output {
background: #1a1a1a;
color: #fff;
padding: 20px;
min-height: 300px;
max-height: 500px;
overflow-y: auto;
margin-bottom: 10px;
}
#input {
width: 100%;
padding: 10px;
box-sizing: border-box;
}
</style>
</head>
<body>
<div id="game-container">
<div id="output"></div>
<input type="text" id="input" placeholder="Enter your command..." autocomplete="off">
</div>
<script src="js/b.js"></script>
<script src="js/where.js"></script>
<script src="js/ecs.js"></script>
<script src="js/worldgen.js"></script>
<script src="js/game.js"></script>
</body>
</html>
|