-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·69 lines (62 loc) · 1.81 KB
/
index.html
File metadata and controls
executable file
·69 lines (62 loc) · 1.81 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>WEIRD WORD GENERATOR</title>
<script src="fittext.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="jquery.animate-colors-min.js"></script>
<script src="fittext.js"></script>
<script src="main.js"></script>
<style>
<!--
html, body {
width: 100%;
height: 100%;
margin: 0px;
background-color:#FFFFFF;
}
canvas {
padding: 0;
margin: auto;
display: block;
}
div {
font-family: "Lucida Grande", "Tahoma", "Calibri", "Verdana", "Arial", sans-serif;
margin: auto;
text-align: center;
max-width: 800px;
color:#FFFFFF;
}
#newWordButton {
font-family: "Impact", "Arial Black", "Arial", sans-serif;
}
.desc {
font-family: "Trebuchet MS", "Tahoma", "Calibri", "Verdana", "Arial", sans-serif;
}
.lang {
font-family: "Impact", "Arial Black", "Arial", sans-serif;
width: 50%;
float:left;
}
-->
</style>
</head>
<body onload="main();">
<div id="fittext">
<div id="newWordButton" onclick="loadNewWord();setRandomStyle();"><span>Click me for new words!</span></div>
<div class="name">Click on</div>
<div class="name">one of these</div>
<div class="name">rows to</div>
<div class="name">read the</div>
<div class="name">description.</div>
<div class="name"></div>
<div class="name"></div>
<div class="name">Have</div>
<div class="name">fun</div>
<div class="name">!</div>
<div class="lang" onclick="langEng();">English</div><div class="lang" onclick="langGer();">Deutsch</div>
</div>
</body>
</html>