-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.15 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Color Card</title>
</head>
<body>
<p class="copied">Color 'Orange' copied to your clipboard</p>
<h1>Color palette generator</h1>
<main class="allcards">
<div> Blue color
<p class="one"></p>
</div>
<div>Red color
<p class="two"></p>
</div>
<div>Orange
<p class="three"></p>
</div>
<div>Purple
<p class="four"></p>
</div>
<div>Gold color
<p class="five"></p>
</div>
</main>
<button class="paletteGenerator">Generate pallete</button>
<p class="writeup">Or just press the "Spacebar" to generate new palettes</p>
<button class="copyPalette">Click to copy individual color. Press "C" to copy pallete</button>
</body>
</html>