-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (49 loc) · 2.47 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<title>Emoji Menu</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<meta name="description" content="This is a searchable catalogue of all known emoji kitchen combos available on Google's keyboard: Gboard.">
<meta name="keywords" content="emoji, kitchen, gboard, google, mashup, creative, copy, images, menu">
<meta name="author" content="Ben Grant">
<link rel="icon" type="image/png" href="menu.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#fde030">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="Emoji Menu">
<meta property="og:description" content="This is a searchable catalogue of all known emoji kitchen combos available on Google's keyboard: Gboard.">
<meta property="og:image" content="https://emojikitchen.rocks/banner.png">
<meta property="og:url" content="https://emojikitchen.rocks">
<meta name="twitter:card" content="summary_large_image">
<link rel="stylesheet" href="style.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LJFCR0MLN0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-LJFCR0MLN0');
</script>
</head>
<body>
<nav>
<img src="./menu.png" alt="">
<h1>Emoji Menu</h1>
<p class="description">This is a searchable catalogue of all known emoji kitchen combos available on Google's keyboard: Gboard. If you find some that aren't here, please <a href="https://github.com/GRA0007/emoji-menu/issues" target="_blank">let us know here</a>.<br>💡 You can click on any image to copy it to your clipboard if your device supports it.</p>
</nav>
<header>
<form id="search">
<input type="search" name="q" id="q" placeholder="🐢🐙">
<button type="submit">🔍</button>
</form>
</header>
<main></main>
<footer>
Made with <img src="./emoji/u2665-ufe0f_u1f422.png" alt="love" title="love"> by <a href="https://bengrant.dev" target="_blank">Ben Grant</a> and <a href="https://benkoder.com" target="_blank">Ben Koder</a>
</footer>
<script type="module" src="script.js"></script>
</body>
</html>