17 lines
396 B
HTML
17 lines
396 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Task 2 — Texture / Surface Variant Switcher</title>
|
|
</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>
|
|
</div>
|
|
|
|
<script type="module" src="./main.js"></script>
|
|
</body>
|
|
</html> |