-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
37 lines (33 loc) · 2.13 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div id="wrapper">
<h2>Famous First Tweets</h2>
Enter a username to find the very first Tweet this user has published.</strong>
<div>
<form id="searchform" name="tweetfinder">
<input type="text" id="user" name="username" autofocus="autofocus" class="searchbox" required><br/>
<div class ="suggestions">Try: <a href="#" class="linkinput" data-user="ladygaga">Lady Gaga</a>, <a href="#" class="linkinput" data-user="rupertmurdoch">Rupert Murdoch</a>, <a href="#" class="linkinput" data-user="f_cancellara">Fabian Cancellara</a>, <a href="#" class="linkinput" data-user="twitter">Twitter</a>.</div>
<input type="submit" value="Find first tweet" class="button">
</form>
<div id="error"></div>
<p class="userinfo"></p>
<div id="thetweetembed"></div>
</div>
<div id="footnote">
This is a little project by <a href="https://twitter.com/davidbauer">David Bauer</a> to document that I'm somewhat progressing in my #Codeyear. Big thanks to <a href="https://twitter.com/MattAntWest">Matt West</a> and <a href="https://www.twitter.com/backflip">Thomas Jaggi</a> for helping me with the tricky parts.
</div>
<a href="https://twitter.com/davidbauer" class="twitter-follow-button" data-show-count="false" data-dnt="true">Follow @davidbauer</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<iframe src="http://ghbtns.com/github-btn.html?user=davidbauer&repo=famous-first-tweets&type=watch"
allowtransparency="true" frameborder="0" scrolling="0" width="53" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=davidbauer&repo=famous-first-tweets&type=fork"
allowtransparency="true" frameborder="0" scrolling="0" width="53" height="20"></iframe>
</div> <!-- wrapper -->
</body>
</html>