-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathindex.html
39 lines (33 loc) · 992 Bytes
/
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
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BG Gradient Checker</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="content">
<div class="title">
<h1>BG Gradient Checker</h1>
</div>
<table>
<tr><strong>Please Start Hexcode With "#"</strong></tr>
<tr>
<td><label for="gradient_direction">Direction : </label></td>
<td><input type="text" placeholder="for ex : (top, right, bottom, left)" id="gradient_direction"></td>
</tr>
<tr>
<td><label for="first_hex">First Hex Code : </label></td>
<td><input type="text" id="first_hex"></td>
</tr>
<tr>
<td><label for="second_hex">Second Hex Code : </label></td>
<td><input type="text" id="second_hex"></td>
</tr>
</table>
<button id="change_bg">Check Gradeint</button>
</div>
<script src="js/script.js"></script>
</body>
</html>