-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
37 lines (36 loc) · 1.33 KB
/
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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css" />
<title>Gradient Picker</title>
</head>
<body>
<div class="container">
<h1>Welcome to Gradient Generator</h1>
<h2>Please use color boxes to see rgb values</h2>
<form class="color-picker">
<input type="color" id="input1" value="#F232ba" />
<input type="color" id="input2" value="#Fa2232" />
<a href="#" class="btn random">Random</a>
</form>
<h3 class="guide">
Copy the code below to your css file to apply gradient.<br>To copy click over the code!
</h3>
<h3 onClick="copyToClipboard()" id="message"></h3>
<a class="github" href="https://github.com/muki01" target="_blank">
<i class="fab fa-github"></i>Follow me on Github</a
>
</div>
<script src="popup.js"></script>
</body>
</html>