-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (24 loc) · 836 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
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Background_Color_Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body id="gradient">
<h1>Background Generator</h1>
<input class="color1" type="color" name="color1" value="#04eefa">
<input class="color2" type="color" name="color1" value="#faff06">
<h2>Current CSS Background</h2>
<div class="button-container">
<button class="button-85" role="button" id="rgb-btn">RGB</button>
<button class="button-85" role="button" id="hex-btn">Hex</button>
</div>
<h3></h3>
<footer>
<p>Created by Naimur Rahman</p>
</footer>
<script src="script.js"></script>
</body>
</html>