blastmud-site/assets/game.html

30 lines
1.0 KiB
HTML
Raw Normal View History

2022-12-23 20:17:19 +11:00
<!DOCTYPE html>
<html style="height:100%">
<head>
<link rel="manifest" href="manifest.json" />
<link rel="icon" href="images/logo96.png" type="image/png" />
<title>Blastmud</title>
<style>
.button {
border: solid black 1px;
padding: 5px;
cursor: pointer;
text-decoration: none;
border-radius: 10px;
color: white;
background: grey;
}
</style>
<link rel="stylesheet" href="xterm.css" />
2023-02-20 09:03:21 +11:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2022-12-23 20:17:19 +11:00
</head>
2023-02-17 23:13:19 +11:00
<body style="background: black; height: 100%; width: 100%; position: fixed; border: 0px; margin: 0px; padding: 0px;">
2022-12-23 20:17:19 +11:00
<div style="background: black; color: white; display: flex; flex-direction: column; margin: 0px; height: 100%; width: 100%">
<h1 style="text-align: center">Play Blastmud</h1>
2022-12-23 20:17:36 +11:00
<div id="console" style="min-height: 40pt; flex: 1">&nbsp;</div>
2023-02-17 23:13:19 +11:00
<div style="min-height: 15pt"></div>
2022-12-23 20:17:19 +11:00
</div>
</body>
<script src="main.js"></script>
</html>