-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.01 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
<!DOCTYPE html>
<!--
_ _ _ _ _
| | (_) | | (_) | |
__| |_____ ___ _ ____ ____ | |__ _ _ ____ _ ____ __| |
/ _ | ___ |/___) |/ _ | _ \| _ \| | | | \| | _ \ / _ |
( (_| | ____|___ | ( (_| | | | | |_) ) |_| | | | | | | | ( (_| |
\____|_____|___/|_|\___ |_| |_|____/ \__ |_|_|_|_|_| |_|\____|
(_____| (____/
-->
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" />
<meta name="robots" content="noindex, nofollow" />
<title>Emoji Picker</title>
<link rel="stylesheet" href="styles.css" />
<script type="text/javascript">
document.addEventListener('gesturestart', function (e) {
e.preventDefault();
});
</script>
</head>
<body>
<div id="picker"></div>
<script type="module" src="index.js"></script>
</body>
</html>