30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
<!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" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
</head>
|
|
<body style="background: black; height: 100%; width: 100%; position: fixed; border: 0px; margin: 0px; padding: 0px;">
|
|
<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>
|
|
<div id="console" style="min-height: 40pt; flex: 1"> </div>
|
|
<div style="min-height: 15pt"></div>
|
|
</div>
|
|
</body>
|
|
<script src="main.js"></script>
|
|
</html>
|