-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextGradient.html
91 lines (83 loc) · 3.21 KB
/
textGradient.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="CSS Generator - Text Gradient">
<link rel="apple-touch-icon" sizes="180x180" href="./styles/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./styles/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./styles/favicon/favicon-16x16.png">
<link rel="manifest" href="./styles/favicon/site.webmanifest">
<title>CSS Generator | Text Gradient</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div id="siteName">
<a href="/">
<h1>CSS Generator</h1>
</a>
</div>
<nav>
<ul id="listHeader">
<li class="navItem">
<a href="./textGradient.html">
<h2>Text Gradient</h2>
</a>
</li>
<li class="navItem">
<a href="./boxShadow.html">
<h2> Box shadow</h2>
</a>
</li>
<li class="navItem">
<a href="./borders.html">
<h2>Border Radius</h2>
</a>
</li>
<li class="navItem">
<a href="./background.html">
<h2>Background</h2>
</a>
</li>
<li class="navItem">
<a href="./transform.html">
<h2>Transform</h2>
</a>
</li>
</ul>
</nav>
<button id="nav-hamburger">
<img style="width: 30px; height: 30px;" src="./styles/hamburgerBarIcon.png" alt="buttonMenuMobile">
</button>
</header>
<div class="codeCopied"> <small>Copied!!!</small> </div>
<section id="textGradient-generator">
<div id="controles-textGradient">
<span class="colors-textGradient">
<label for="firstColor-textGradient">Color 1</label>
<input type="color" id="firstColor-textGradient" value="#ff0000">
</span>
<span class="colors-textGradient">
<label for="secondColor-textGradient">Color 2</label>
<input type="color" id="secondColor-textGradient" value="#0040ff">
</span>
</div>
<div id="textPreview">
<h2>I'm a text gradient</h2>
</div>
<div id="content-textGradient">
<div id="out-textGradient">
</div>
<button class="copy">Copy</button>
</div>
</section>
<script defer src="./js/textGradient.js"></script>
<script defer src="./js/btnNavbar.js"></script>
</body>
</html>