-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathengrish.html
More file actions
55 lines (52 loc) · 3.91 KB
/
engrish.html
File metadata and controls
55 lines (52 loc) · 3.91 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Text to Bad Text (Engrish)</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="black">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.9.2.css">
<script src="https://code.jquery.com/qunit/qunit-2.9.2.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sizzle/2.3.5/sizzle.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sizzle/2.3.5/sizzle.min.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="http://benahm.github.io/jquery.throwable/javascripts/libs/jquery-1.9.0/jquery.min.js" type="text/javascript"></script>
<script src="http://benahm.github.io/jquery.throwable/javascripts/jquery.throwable.js" type="text/javascript"></script>
<script src="filesaver.js"></script>
<meta data-react-helmet="true" charset="utf-8">
<meta data-react-helmet="true" property="og:title" content="Text to Bad Text (Engrish)">
<meta data-react-helmet="true" property="og:description" content="This text will turn into Engrish with terrible grammar.">
<meta data-react-helmet="true" name="description" content="This text will turn into Engrish with terrible grammar.">
</head>
<style>
::-webkit-scrollbar {
display: none;
}
body { background: silver; font-family: Tahoma, Helvetica, Roboto, sans-serif; text-align: center; }
textarea { font-family: Tahoma, Helvetica, Roboto, sans-serif; background: white; outline: none; resize: none; color: black; box-shadow: 2px 2px 15px red, -2px 2px 15px lime, 2px -2px 15px yellow, -2px -2px 15px cyan;}
textarea:hover { background: white; outline: none; resize: none; color: blue; }
textarea:active { background: white; outline: none; resize: none; color: blue; }
button { font-family: Tahoma, Helvetica, Roboto, sans-serif; padding: 10px 10px; border: 1px inset green; background: yellowgreen; color: white; box-shadow: 0px 2px 4px turquoise, 0px 4px 4px blue; outline: none;}
button:active { padding: 10px 10px; border: 1px inset red; background: orangered; color: beige; box-shadow: 0px 2px 4px firebrick; outline: none;}
button:hover { padding: 10px 10px; border: 1px inset beige; background: yellow; color: black; box-shadow: 0px 2px 4px greenyellow; outline: none;}
</style>
<body>
<h1 style="text-shadow: 4px 4px 2px grey;">Text to Bad Text (Engrish)</h1>
<img src="generator_engrish.png" width="200" height="100">
<br><a href="hex.html">Hex Paster </a><a href="bws.html">BonziWORLD spam maker </a><a href="ws.html">Remove Whitespace </a><a href="emp.html">Empath Bonzi </a><a href="ex.html">Exclamationier </a><a href="b.html">Bonzi Buddy Translator </a><a href="gib.html">Gibberisher </a><a href="ques.html">Question Marker </a><a href="nopause.html">Pause Remover </a><a href="lowercase.html">Text to Lowercase </a><a href="nonum.html">Number Remover </a><a href="cooler.html">Text to Coolin' Text </a><a href="engrish.html">Text to Bad Text </a><br>
<br>
<textarea id="g" rows="30" cols="150" placeholder="Paste or write anything here." autofocus spellcheck="false"></textarea>
<br>
<button onclick="downloadhex()">Download</button>
<p>This text will turn into Engrish with terrible grammar. "LOOK GUYS IM HERE KIDDIE TIME NAH LIKE POP SING ME" - terrible</p>
<script>
var enga = ['u','x','y','8','%','#','-',':','b','c','j','v','m','n','f','"','&','(',')','{','}','_']
setInterval(function(){var xxx = document.getElementById('g').value;
xxx = xxx.replace(/a|w|e|,|p|l|i|4|2|0|%|k|g|r/gi, enga[Math.floor(Math.random()*enga.length)]);
document.getElementById('g').value = xxx}, 1);
function downloadhex(){saveTextAs(document.getElementById('g').value, "EngrishText.txt")}
setInterval(function(){document.title="Text to Bad Text (Engrish)"}, 1);
</script>
</body>
</html>