-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="me" href="https://corteximplant.com/@Sirs0ri">
<title>look up!</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style-index.css">
<script src="script.js" defer></script>
</head>
<body>
<section class="hero">
<h1>look up! ◔‿◔<sup>🌸</sup></h1>
<p>A lookup page for emoticons</p>
</section>
<form id="searchForm">
<label for="search">Search for an emote:</label>
<input id="search" type="text">
<button id="clearSearch" type="reset">
<span class="visually-hidden">Clear search input</span>
</button>
</form>
<ul id="emojicons" data-empty-message="Loading..."></ul>
<footer>
built by <a href="https://github.com/Sirs0ri/" target="_blank">@sirs0ri</a>. inspired by <a
href="https://web.archive.org/web/20221208223019/https://emojicons.com/home" target="_blank">
emojicons.</a>
</footer>
<div class="error-anchor">
<div class="wrapper hidden">
<span id="error"></span>
<button id="clearError">ok</button>
</div>
</div>
</body>
</html>