-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 886 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color Palette Generator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Random Color Palette Generator</h1>
<p>Click "Generate Palette" to create random colors. Click on any color to copy its hex code!</p>
</header>
<div class="container">
<div class="palette">
<div class="color-box" id="color1"></div>
<div class="color-box" id="color2"></div>
<div class="color-box" id="color3"></div>
<div class="color-box" id="color4"></div>
</div>
<button class="generate-btn" id="generateBtn">Generate Palette</button>
</div>
<script src="script.js"></script>
</body>
</html>