-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (21 loc) · 826 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Emojifier</title>
<link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
<script type="text/javascript" src="./jquery.js"></script>
<script type="text/javascript" src="./function.js"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1>Text Emojifier for Discord</h1>
<p>convert here:</p>
<textarea rows="5" cols="100" id="in" placeholder="text to emojify here..."></textarea>
<p>converted to:</p>
<textarea rows="8" cols="100" id="out" placeholder="emojifies here" readonly=""></textarea>
<br>
<button id="copy">Copy</button>
</body>
</html>