websocket-canvas/index.html

27 lines
459 B
HTML
Raw Normal View History

2021-08-24 17:21:14 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Canvas Demo</title>
<script defer type="module" src="dist/app.js"></script>
</head>
<body>
<div id="canvas"></div>
</body>
<style>
body {
margin: 0 0 0 0;
}
#canvas {
height: 100vh;
width: 100vw;
}
#canvas > canvas {
width: 100%;
height: 100%;
}
</style>
2021-08-24 17:57:25 +00:00
</html>