21 lines
663 B
HTML
21 lines
663 B
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> <div id="selected-palette">
|
|
<h2>Your Palette</h2>
|
|
<div id="palette-colors"></div>
|
|
<button id="clear-palette">Clear Palette</button>
|
|
</div>
|
|
<div id="color-families"></div>
|
|
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |