31 lines
625 B
HTML
31 lines
625 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>wfc</title>
|
||
|
<style>
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
html, body {
|
||
|
margin: 0;
|
||
|
overflow: hidden;
|
||
|
background-color: black;
|
||
|
}
|
||
|
|
||
|
#render {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
background-color: black;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<canvas id="render"></canvas>
|
||
|
<script type="text/javascript" src="bundle.js"></script>
|
||
|
</body>
|
||
|
</html>
|