-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
49 lines (43 loc) · 1.72 KB
/
index.htm
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
<!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" media="(prefers-color-scheme: light)" content="#eeffee" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#333333" />
<meta name="color-scheme" content="light dark" />
<title>Emojis in GitHub</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<h1>Emoji list from <a id="a-api"></a></h1>
<h2>Hover / click an icon to display emoji code.</h2>
<div class="nav-menu">
<div class="nav-link">
<picture>
<source srcset="img/search-light.svg" media="(prefers-color-scheme: dark)" width="40px">
<img src="img/search-full.svg" alt="Search" width="40px" title="Search">
</picture>
<h2>Search: <input title="Search Emojis" type="text" oninput="filterEmojis(this.value)">
</input>
</h2>
</div>
<div class="nav-link">
<a id="nav-github" href="https://github.com/AndrewKhassapov" target="_self">
<picture>
<source srcset="img/github-mark-light.svg" media="(prefers-color-scheme: dark)" width="40px">
<img src="img/github-mark-full.svg" alt="GitHub" width="40px" title="Go to GitHub">
</picture>
</a>
</div>
</div>
<div id="msgcontainer" class="hide unclickable">
<div id="emojiselect" class="hide unclickable">
<div id="emojiselected"></div>
</div>
</div>
<div id="emojis"></div>
<script src="js/main.js"></script>
</script>
</body>
</html>