19 lines
493 B
HTML
19 lines
493 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Task 2 — Texture / Surface Variant Switcher</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="controls">
|
|
<button data-variant="earth" class="active">Earth</button>
|
|
<button data-variant="moon">Moon</button>
|
|
<button data-variant="sun">Sun</button>
|
|
<button data-variant="jupiter">Jupiter</button>
|
|
</div>
|
|
|
|
<script type="module" src="./main.js"></script>
|
|
</body>
|
|
</html> |