<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lunar Spacecrafter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="game-container">
<div id="spaceship"></div>
<div id="info-panel">
<div id="altitude">Altitude: 0</div>
<div id="fuel">Fuel: 100</div>
</div>
<div id="control-panel">
<button id="thrust-button">Thrust</button>
<button id="rotate-left">Rotate Left</button>
<button id="rotate-right">Rotate Right</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>