-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
34 lines (34 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Emoji cipher</title>
<link type="text/css" rel="stylesheet" href="emojicipher.css" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=0.5"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<script src="emojishortcodes.js"></script>
<script src="emojicipher.js"></script>
</head>
<body>
<main id="container">
<input id="input" placeholder="Enter letters or emojis" autocomplete="off" />
<footer>
<a href="https://github.com/ndri/emojicipher">GitHub page</a>
<a id="advancedbutton">Advanced</a>
</footer>
<form id="advanced" style="display: none">
<input id="textalphabet" placeholder="Text alphabet" />
<input id="shuffletext" type="button" value="Shuffle" />
<input id="emojialphabet" placeholder="Emoji alphabet" />
<input id="shuffleemojis" type="button" value="Shuffle" />
</form>
<textarea id="output" readonly></textarea>
</main>
</body>
</html>