-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 791 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Background generator</title>
<link rel="stylesheet" href="./assets/css/style.min.css" />
</head>
<body class="gradient">
<h1>Background generator</h1>
<div class="color-picker">
<input class="color1" type="color" value="#e66465" />
<input class="color2" type="color"" value="#f6b73c">
</div>
<br />
<h2>Current CSS background:</h2>
<div class="tooltip">
<span class="tooltiptext" id="myTooltip">Copy to clipboard</span>
<input class="copy-color" type="text" readonly />
</div>
<script src="./assets/js/script.min.js"></script>
</body>
</html>