forked from whatnotery/randomgradient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (35 loc) · 1.27 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
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.0">
<title>Random Gradient</title>
<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+Mono&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css"></link>
</head>
<body>
<div class="container">
<div></div>
<div class="btnWrap">
<button class="hide" id="history"><i id="hIcon"></i></button>
<button id="main">Give me a gradient</button>
<button class="hide" id="copy"><i id="cbIcon"></i></button>
</div>
<div></div>
</div>
<span class="social">
<a href="https://github.com/whatnotery/randomgradient">
<i class="bi bi-github"></i>
</a>
<a href="https://joshea.dev">
joshea.dev
</a>
</span>
<script src="app.js"></script>
</body>
</html>