mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
21 lines
612 B
HTML
21 lines
612 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Outer wilds solar system</title>
|
|
<script src="index.js" defer></script>
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="solar-system">
|
|
<div class="object p-orbit"></div>
|
|
<img class="object" src="images/sun.webp" alt="" id="sun">
|
|
<img class="object planet" src="images/station.webp" alt="" id="station">
|
|
<img class="object planet" src="images/ash.webp" alt="" id="ash">
|
|
</div>
|
|
</body>
|
|
|
|
</html> |