fractal-hell/index.html

21 lines
530 B
HTML
Raw Normal View History

2024-09-12 19:19:06 -04:00
<!DOCTYPE html>
<html>
2024-09-13 03:30:57 -04:00
<head>
<link rel="stylesheet" href="https://dervland.net/index.css">
<link rel='stylesheet' href='game.css'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<section id='main'>
<h1>Fractal Hell</h1>
<canvas id='canvas'></canvas>
<div class='message' style='display: none;'><span>You died in the Void...</span></div>
</section>
<script src='js/perlin.js'></script>
<script src='js/index.js'></script>
<script src='js/motion.js'></script>
</body>
</html>