-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (47 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
63 lines (47 loc) · 1.2 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Background Changer</title>
<link rel="stylesheet" type="text/css" href="css/background.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body id="gradientbg">
<header>
<nav>
<div class="logo_container">
<center><img src="img/logoc.png" alt="logo" class="logo"></center>
</div>
<center>
<h1 class="title">Color Hex Code Generator</h1>
<p class="noCase">Free Hex Codes Generator</p>
</center>
</nav>
</header>
<br>
<br>
<main>
<div class="container">
<center>
<form class="container">
<center><span class="noCase white">Click Box To Pick Color</span></center>
<br>
<input class="color1" type="color" name="color1" value="#0CC03E">
<input class="color2" type="color" name="color2" value="#008080">
</form>
</center>
</div>
<div class="codeContainer">
<div class="code1"></div>
<div class="code2"></div>
</div>
</main>
<br>
<div class="colorCode">
</div>
<div class="footer">
<center><p>Made with love By Emmanuel</p></center>
</div>
<script type="text/javascript" src="js/background.js"></script>
</body>
</html>