19 lines
534 B
HTML
19 lines
534 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>LUNA-3: Simple World — Floating Islands</title>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.0/p5.min.js"></script>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="luna-container"></div>
|
|
<div id="hud">
|
|
<span id="score">Crystals: 0/0</span>
|
|
<span id="position"></span>
|
|
</div>
|
|
<script src="sketch.js"></script>
|
|
</body>
|
|
</html>
|