-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (27 loc) · 1.1 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
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<title> Color Shifter </title>
<script src="https://kit.fontawesome.com/eff1635aaf.js" crossorigin="anonymous"></script>
</head>
<body>
<div class = "centralize">
<div id="main" class="wtb">
<h1>COLOR SHIFTER</h1>
<div class = "blank-10"></div>
<span>#</span>
<div id = "boxes">
<input maxlength="6" type="text" id="hex-input" class="round-corners">
<div class = "blank-10"></div>
<button id="undo" class="round-corners unclickable"><i
class="fa-2xl fa-solid fa-arrow-left"></i></button>
<button id="fade" class="round-corners"><i
class="fa-2xl fa-solid fa-clover"></i></button>
<button id="random" class="round-corners"><i
class="fa-2xl fa-solid fa-dice"></i></button>
</div>
</div>
</div>
<script type="text/javascript" src="src/script.js"></script>
</body>
</html>