18 lines
441 B
HTML
18 lines
441 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Task 3 — UI-Controlled Product Option</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="controls">
|
|
<button data-variant="black" class="active">Black</button>
|
|
<button data-variant="silver">Silver</button>
|
|
<button data-variant="gold">Gold</button>
|
|
</div>
|
|
|
|
<script type="module" src="./main.js"></script>
|
|
</body>
|
|
</html> |