here_be_dragons/docs/index.html

32 lines
646 B
HTML
Raw Normal View History

2020-09-12 08:08:07 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mapgen demo</title>
<style>
body {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#fps {
white-space: pre;
font-family: monospace;
}
</style>
</head>
<body>
2020-09-12 11:13:06 +00:00
<h1>Map generator demo</h1>
2020-09-12 08:08:07 +00:00
<button id="play-pause"></button>
<div id="fps"></div>
2020-09-12 11:13:06 +00:00
<canvas id="demo-canvas"></canvas>
2020-09-12 08:08:07 +00:00
<script src='./index.js'></script>
</body>
</html>