34 lines
888 B
HTML
34 lines
888 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<base href="../" />
|
|
<title>Orbit — Comms Panel Dev</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="stylesheet" href="css/theme.css" />
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
background: #04060d;
|
|
overflow: hidden;
|
|
}
|
|
#game {
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="game"></div>
|
|
<script src="lib/phaser.min.js"></script>
|
|
<script type="module" src="dev/comms-shot.mjs"></script>
|
|
</body>
|
|
</html>
|