-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (25 loc) · 1011 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
<!DOCTYPE html>
<html>
<head>
<title>Background generator</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<!-- font -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<!--CSS stylesheet -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<input type="radio" name="gradientType" value="LinearGradient" class="select1">
<label for="to right">Linear gradient</label><br>
<input type="radio" name="gradientType" value="RadialGradient" class="select2">
<label for="">Radial gradient</label><br><br>
<!-- color input -->
<p>Choose colors ---></p>
<input class="color1" type="color" name="colorBox">
<input class="color2" type="color" name="colorBox">
<!-- JavaScript Link -->
<script src="script.js" type="text/javascript"></script>
</body>
</html>