-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
87 lines (84 loc) · 1.93 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title>bigtextbox.com</title>
<style>
html {
width: 100%;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
font-family: Helvetica;
margin: 0;
padding: 0;
}
h1 {
margin: 0;
padding: 0;
font-size: 32px/40px;
text-align: center;
color: #eee;
}
h1:hover{
color: #888;
}
footer {
color: #eee;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 40px;
text-align: center;
}
footer:hover {
color: #888;
}
footer a {
color: #eef;
}
footer:hover a {
color: #88f;
}
#bigtextbox {
border: none;
position: absolute;
top: 40px;
bottom: 40px;
margin: 0;
padding: 10%;
width: 80%;
text-align: center;
font-family: Helvetica;
font-size: 92px;
outline: none;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-278947-10']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<header>
<h1>bigtextbox.com</h1>
</header>
<textarea id="bigtextbox"></textarea>
<footer>
© 2011 Grant Hutchins | <a href="http://nertzy.com">nertzy.com</a>
</footer>
<script type="text/javascript">
document.getElementById("bigtextbox").focus();
</script>
</body>
</html>