-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.5 KB
/
index.html
File metadata and controls
43 lines (37 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8" />
<title>JavaScript</title>
<meta name="keywords" content="Working hours" />
<meta name="description" content="Working hours" />
<meta name="author" content="68.76" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src = 'main.js' defer></script>
</head>
<body>
<div id = 'cont'>
<div id = 'main'>
<h2>Color generator</h2>
<div>
<p>There are 140 colors random generated and returned by rgb, hex values or color name.</p>
<h3>Let's generate color</h3>
<div id = 'clr'></div><br/>
<p>Rgb: <input class = 'br' id = 'rg' /></p>
<p>Hex: <input class = 'br' id = 'h' /></p>
<p>Name: <input class = 'br' id = 'n' /></p>
<button id = 'btn'>Generate color</button><br/><br/>
</div>
</div>
<footer>
<img class='ban' src = 'w3schools88_31.gif' alt = 'Banner W3schools' /><br/>
<span id = 'init' style = 'color: wheat'>⁘<small> created by DL </small>⁘</span>
</footer>
</div>
</body>
</html>