-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 1.34 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'>
<title></title>
<!-- Links to sheets. -->
<link rel='stylesheet' href='style.css'>
<link rel='canonical' href=''>
<!-- Force IE 8/9/10 to use its latest rendering engine -->
<!-- Internet Explorer -->
<meta http-equiv='x-ua-compatible' content='ie=edge'>
</head>
<body>
<div id="color-list">
<div id="saved-colors" class="closed">
</div>
<button id="drawer-button" name="open/close button">
>
</button>
</div>
<div id="color-picker">
<p class='hex'></p>
<div id="buttons">
<button class="main-button" id='randomizer-button' name="randomizer-button">
Click To Change Color
</button>
<button class="main-button" id='save-button' name="save-button">
Save Color
</button>
<button class="main-button" id="clear-button" name="clear-button">
Clear List
</button>
</div>
</div>
<!-- Link JS, keep at bottom -->
<script src='index.js'></script>
</body>
</html>