-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
45 lines (23 loc) · 807 Bytes
/
popup.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
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="popup.css">
<link href="https://fonts.googleapis.com/css?family=Kalam:300,regular,700" rel="stylesheet" />
</head>
<body>
<div class="container">
<div>
<span> <img class="iconi" src="/images/icon.png" alt=""></span>
<span class="heading"> Pick Your Color </span>
<span> <img class="iconi" src="/images/icon2.png" alt=""></span>
</div>
<button class="glow-on-hover colorbtn" type="button">Pick color</button>
<div class="selectColor">
<span class="colorGrid"></span>
<span class="colorValue"></span>
</div>
<p class="message"></p>
</div>
</body>
</html>
<script src="popup.js"></script>