-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Find a Font Awesome icon name by pasting the glyph or Unicode charcode.">
<link rel="stylesheet" href="./style.css">
<script src="https://kit.fontawesome.com/12bd201987.js" crossorigin="anonymous"></script>
<title>F.A.R.L – Font Awesome Reverse Lookup</title>
</head>
<body>
<div id="container" class="loading">
<h1>F.A.R.L</h1>
<h2>Font Awesome Reverse Lookup</h2>
<span>Find a Font Awesome icon by pasting the glyph or Unicode charcode</span>
<input type="text" id="character" maxlength="1" autofocus placeholder="" aria-label="Glyph" title="Glyph">
<input type="text" id="unicode" placeholder="f2b4" aria-label="Unicode" title="Unicode"></output>
<output class="name-container">
<a id="name-clickable" href="https://fontawesome.com/icons/" target="_blank"></a>
<span id="name-unclickable"></span>
<button class="copy-button" onclick="copyName();" aria-label="Copy" title="Copy">
<i class="fas fa-copy" aria-hidden="true"></i>
<span id="copy-confirmation">Copied!</span>
</button>
</output>
<span id="pro-only"><i class="fas fa-triangle-exclamation"></i>Pro only</span>
<footer>
Font Awesome v<span id="version-info"></span>
</footer>
</div>
</body>
<script src="./farl.js"></script>
</html>