mr-crocs-adventures/index.html

25 lines
456 B
HTML
Raw Normal View History

2020-01-19 00:45:17 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mr. Crocs Adventures</title>
<style>
2020-02-24 00:19:21 +01:00
@font-face {
font-family: Silkscreen;
src: url("fonts/slkscr.ttf")
}
2020-01-19 00:45:17 +01:00
#canvas {
position: absolute;
top: 0;
left: 0;
2020-02-24 00:19:21 +01:00
cursor: none;
2020-01-19 00:45:17 +01:00
}
</style>
2020-01-27 20:07:54 +01:00
<link rel="shortcut icon" type="image/png" href="favicon.png">
2020-01-19 00:45:17 +01:00
<script type="module" src="js/module.js"></script>
</head>
<body>
<canvas id="canvas"></canvas>
</body>
</html>