36 lines
636 B
HTML
36 lines
636 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Kroz</title>
|
|
<link rel="icon" type="image/png" href="icon.png" />
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body,
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
#canvas {
|
|
width: 100vw;
|
|
height: 56.25vw;
|
|
max-height: 100vh;
|
|
max-width: 177.78vh;
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas"></canvas>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|