-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.15 KB
/
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
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Linear Gradient Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</head>
<body>
<div class="container">
<h1>Linear Gradient Generator</h1>
<input id="color1" class="input-color" type="color" name="color1" value="#f45941">
<input id="color2" class="input-color" type="color" name="color2" value="#4286f4">
<br><br>
<select id="gradient-direction">
<option>to right</option>
<option>to bottom right</option>
<option>to bottom</option>
<option>to bottom left</option>
<option>to left</option>
<option>to top left</option>
<option>to top</option>
<option>to top right</option>
</select>
<hr>
<h2>Current CSS Background</h2>
<h3></h3>
<button>Random Gradient!</button>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>