-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 980 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#446ccf" />
<meta name="apple-mobile-web-app-status-bar-style" content="#446ccf" />
<link rel="stylesheet" href="/src/css/styles.css" />
<link rel="canonical" href="https://colorstash.glitch.me/" />
<link
rel="shortcut icon"
href="https://cdn.glitch.com/6050e61e-9c5c-4031-bae1-4271ff317929%2Ficon-16x16.ico?v=1594997182109"
/>
<script src="/src/js/main.js" defer></script>
<title>Color Stash</title>
</head>
<body>
<div class="container">
<div id="savedColors"></div>
<div id="preview">
<div class="color-container">
#
<input
id="colorInput"
type="text"
placeholder="446ccf"
maxlength="6"
/>
</div>
</div>
</div>
</body>
</html>