27 lines
440 B
HTML
27 lines
440 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>ArmorPaint</title>
|
|
<style>
|
|
body, html {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background-color: #222;
|
|
}
|
|
#iron {
|
|
display: block;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="iron" tabindex="0"></canvas>
|
|
<script src="start.js"></script>
|
|
</body>
|
|
</html>
|