This commit is contained in:
Mal
2020-01-19 00:45:17 +01:00
commit 893c226fe4
10 changed files with 541 additions and 0 deletions

18
index.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mr. Crocs Adventures</title>
<style>
#canvas {
position: absolute;
top: 0;
left: 0;
}
</style>
<script type="module" src="js/module.js"></script>
</head>
<body>
<canvas id="canvas"></canvas>
</body>
</html>