-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 807 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Gugi" rel="stylesheet">
<title>Gradient</title>
<link rel ="stylesheet" type="text/css" href="style.css">
</head>
<body id="gradient">
<h1>Gradient Generator</h1>
<div class="middle">
<input type="color" class="color1"name="color1" value="#8B008B">
<input type="color" class="color2"name="color2" value="#FFD300">
<input type="color" class="color3"name="color3" value="#DC143C">
<h2>Current Background Code</h2>
<h3></h3>
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>