Web Development – Adding recent tweets to your web page
To insert your most recent tweets on to a web page paste this code:
<ul id="twitter_update_list">Loading...</ul> <script type="text/javascript" src="http://twitter.com/javascripts/blogger.js" defer></script> <script type="text/javascript" src="http://twitter.com/statuses/user_timeline/USERNAME.json?callback=twitterCallback2&count=5" defer></script>
You change "USERNAME" to your twitter account name and you set the "count" to show the number of tweets you want displayed.


