-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 1.21 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
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pastel Color Generator</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css"
integrity="sha512-xnP2tOaCJnzp2d2IqKFcxuOiVCbuessxM6wuiolT9eeEJCyy0Vhcwa4zQvdrZNVqlqaxXhHqsSV1Ww7T2jSCUQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="icon" type="image/png" href="./favicon.png" />
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body id="body">
<h1 class="header">Pastel</h1>
<div class="btn-group">
<button id="btn-random">Random</button>
<button id="btn-copy">Copy</button>
</div>
<span class="bg-color" id="bg-color"></span>
<div class="btn-group">
<button id="btn-undo" disabled>Undo</button>
</div>
<input type="text" class="bg-color-textbox" id="bg-color-textbox" />
<span class="github" id="github" title="Browse code">
<i class="bi bi-github"></i>
</span>
<script type="text/javascript" src="./script.js"></script>
</body>
</html>