-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 973 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Tabler Icons CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tabler-icons/3.27.1/tabler-icons.min.css"
integrity="sha512-24pha7f9ovk2qSOeb9WkMiBXIlBFChRtCcsj1xt3fBGXySJtBVlBqYg46xK+oKgt0okLlZWcXulHvqIN45oTkg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- EZ Icon Picker CSS -->
<link rel="stylesheet" href="./dist/ez-icon-picker.css">
<title>Icon Picker</title>
</head>
<body>
<!-- Icon picker -->
<div class="icon-picker" data-name="icon"></div>
<script src="./dist/ez-icon-picker.iife.js"></script>
<script>
// Initialize
document.addEventListener('DOMContentLoaded', () => {
new EzIconPicker({
selector: '.icon-picker'
});
});
</script>
</body>
</html>