fractal-hell/index.html
2024-09-13 06:11:07 -04:00

26 lines
No EOL
597 B
HTML

<!DOCTYPE html>
<html>
<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>
<div>
<canvas id='canvas'></canvas>
<div class='message' style='display: none;'><span>You died in the Void...</span></div>
</div>
<div class='ui-text'>
placeholder
</div>
</section>
<script src='js/perlin.js'></script>
<script src='js/index.js'></script>
<script src='js/motion.js'></script>
</body>
</html>