-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
65 lines (59 loc) · 2.32 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
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css">
<meta name="description" content="Convert English to any of the 3 Warframe race languages">
<meta name="keywords" content="warframe,tenno,corpus,grineer,language,translate,translator,english">
<meta name="author" content="Clarvel">
<LINK REL="SHORTCUT ICON" HREF="images/favicon.ico">
<title>TennoTyper</title>
</head>
<body>
<table>
<tr>
<td>
<a href="http://www.warframe.com">
<img src="images/logo.png" style="border:0">
</a>
</td>
<td>
<textarea id="text" placeholder="Input Text Here" rows="4" cols="50" oninput="draw()" autofocus></textarea>
</td>
<td>
<select id="language" oninput="draw()">
<option value="tenno">Tenno</option>
<option value="orokin">Orokin</option>
<option value="corpus">Corpus</option>
<option value="grineer">Grineer</option>
</select>
<br>
<input type="checkbox" id="background" value="false" onclick="backG()">Background
<br>
<!--input type="checkbox" id="logo" value="1" onInput="draw()">Race Logo
<br-->
<!--input type="button" id="displayGuide" onInput="displayGuide()">Show Guide
<br-->
<!--input type="checkbox" id="emphasis" value="1" onInput="draw()">Race Logo
<br-->
<button type="button" id="save" onClick="saveImg()">Save</button>
</td>
<td>
<span id="tOverride"><input type="checkbox" value="false" onclick="phonetic()">Manual Override</span>
<span id="cBold"><input type="checkbox" value="false" onclick="bold()">Bold</span>
<br>
<button type="button" id="cheat" onClick="cheatsheet()">CheatSheet</button>
</td>
</tr>
</table>
<canvas id="renderWindow">Your browser does not support the HTML5 canvas tag.</canvas>
<script src="javascripts/main.js" type="text/javascript" id="main" onload="loaded()"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-57424700-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>