25 lines
731 B
HTML
25 lines
731 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- <link rel="icon" type="image/gif" href="icon.png"/> -->
|
|
<title>title</title>
|
|
<style>
|
|
html {
|
|
background-color: #242424;
|
|
color: white;
|
|
}
|
|
canvas {
|
|
position:absolute;
|
|
top:0;bottom:0;right:0;left:0;
|
|
margin:auto;
|
|
border: 5px solid rgb(63, 63, 63);
|
|
border-radius: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas width="1000" height="800" id="game"></canvas>
|
|
<script src="scripts/game.js"></script>
|
|
<script src="scripts/index.js"></script>
|
|
</body>
|
|
</html> |