This repository has been archived on 2020-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-46/index.html
rsninja722 24530a0370 setup
2020-04-17 14:13:25 -04:00

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>