37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Beach Party Balloons Color Palette Picker</title>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Autour+One&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<header id="main-header">
|
|
<h1>🎈 Color Balloon Picker</h1>
|
|
<p>Select and float your favorite shades</p>
|
|
</header>
|
|
<div id="selected-palette">
|
|
<h2>Your Palette</h2>
|
|
<div id="palette-controls">
|
|
<label class="switch">
|
|
<input type="checkbox" id="toggle-animation" checked>
|
|
<span class="slider"></span>
|
|
</label>
|
|
<button id="shuffle-palette" title="Shuffle Palette">🔀</button>
|
|
</div>
|
|
|
|
<div id="palette-colors"></div>
|
|
<button id="clear-palette">Clear Palette</button>
|
|
</div>
|
|
<div id="color-families"></div>
|
|
|
|
<footer>
|
|
<p>Made with 🎨 and 🎈 | Chris © 2025</p>
|
|
</footer>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |