-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (17 loc) · 825 Bytes
/
index.html
File metadata and controls
19 lines (17 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>Gradient Background</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body id="gradient">
<h1>Background Generator</h1>
<h2>Current CSS Background</h2>
<input class="color1" onclick="showInTextbox()" id="gradient1" type="color" name="color1" value="#32585d">
<input class="color2" onclick="showInTextbox()" id="gradient2" type="color" name="color2" value="#21ba40">
<input class="color3" onclick="showInTextbox()" id="gradient3" type="color" name="color2" value="#d03535">
<span style="margin-left: 10px;">Copy gradient<img id="copyImg" onclick="copyToClickboard()" src="images/copy.png" width="25" height="25"/></span>
<h3></h3>
<script type="text/javascript" src="script.js"></script>
</body>
</html>