-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 903 Bytes
/
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
<!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">
<title>Background Generator</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Background Generator</h1>
<input id="colorOneInput" type="color" name="colorOneInput" value="#00ff00">
<input id="colorTwoInput" type="color" name="colorTwoInput" value="#0000ff">
<h2>CSS Background</h2>
<div class="background-container">
<h3 id="background"></h3>
<div class="tooltip">
<span id="tooltip" class="tooltip-text">Copy to clipboard</span>
<img id="copyIcon" class="copy-icon" src="copy.png" alt="copy icon">
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>