-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 762 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<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 rel="stylesheet" href="style.css">
<title>CSS Gradient Generator</title>
</head>
<body id="gradient">
<div class="container">
<h1>css gradient Generator</h1>
<div class="colors">
<input class="color1" type="color" name="color1" value="#ff9a9e">
<input class="color2" type="color" name="color2" value="#fad0c4">
</div>
<input type="text" class="angle" placeholder="Enter angle">
<h3 class="generated">linear-gradient(to right, rgb(255,154,158), rgb(250,208,196));</h3>
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>