-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 850 Bytes
/
index.html
File metadata and controls
29 lines (24 loc) · 850 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="theme-color" content="#42445A"/>
<meta name="description" content="Flat, simple, hackable color picker web components."/>
<title>Pickr Webcomponents</title>
<link rel="icon" href="www/favicon.png"/>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap" rel="stylesheet">
<link href="www/index.css" rel="stylesheet"/>
</head>
<body>
<header>
<h1>Pickr. Keep it simple.</h1>
<a href="https://github.com/node-projects/pickr-webcomponent">VIEW ON GITHUB</a>
</header>
<main>
<div class="theme-container"></div>
<div class="pickr-container"></div>
</main>
<script type="module" src="www/index.js"></script>
</body>
</html>