-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AnyAscii - Unicode to ASCII Transliteration</title>
<meta name="description" content="Converts Unicode characters to their best ASCII representation">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="canonical" href="https://anyascii.com">
<link rel="manifest" href="/manifest.webmanifest">
<script defer src="/index.js"></script>
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "27411d224107456b9911ac6b2b12d40c"}'></script>
<meta name="application-name" content="AnyAscii">
<meta name="author" content="hunterwb">
<style>
body {
background-color: #fafafa;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.5;
text-align: center;
}
#textareas {
display: flex;
justify-content: center;
align-content: space-around;
flex-wrap: wrap;
}
textarea {
resize: none;
margin: 0.5em;
flex-grow: 1;
min-width: 20em;
max-width: 40em;
height: 14em;
padding: 0.5em;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
</style>
</head>
<body>
<div id="textareas" lang="">
<textarea id="input" placeholder="input" autofocus></textarea>
<textarea id="output" placeholder="output" readonly></textarea>
</div>
<div>AnyAscii: Unicode to ASCII transliteration. Converts Unicode characters to their best ASCII representation.<br><a href="https://github.com/anyascii/anyascii">https://github.com/anyascii/anyascii</a></div>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('/service-worker.js');
});
}
</script>
</body>
</html>