-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtwoot.htm
More file actions
executable file
·28 lines (28 loc) · 1.16 KB
/
twoot.htm
File metadata and controls
executable file
·28 lines (28 loc) · 1.16 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Dr. Twoot</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<script type="text/javascript" src="jquery-latest.pack.js"></script>
<script type="text/javascript" src="jquery.hotkeys-0.7.8-packed.js"></script>
<script type="text/javascript" src="jquery.maskedinput-1.2.1.pack.js"></script>
<script type="text/javascript" src="twoot.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=IM+Fell+English' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="tweets">
<ul class="tweet_list">
</ul>
</div>
<div id="message_entry">
<form id="status_entry" method="post", name="status_entry">
<input type="submit" id="send" value="Update" />
<input type="button" id="image" value="Image" />
<label id="count" for="status" class="normal">140</label>
<textarea name="status" id="status"
onKeyUp="charCountdown()"></textarea>
</form>
</div>
</body>
</html>