Show Tweets on your Website


To display tweets from your twitter account on your website you don’t need to register a widget for this. Just use the following code and also you can manage the style of your tweet box.

<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 3,
interval: 6000,
width: 216,
height: 240,
theme: {
shell: {
background: '#ffffff',
color: '#292b2c'
},
tweets: {
background: '#f6f6f6', // background colour of tweets area
color: '#292b2c', // font colour of the text written
links: '#1388d2' // font colour of the hyperlinks
}
},
features: {
scrollbar: false,
loop: false,
live: true,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('jainsiddharth21').start();
</script>

Just replace “jainsiddharth21” with your actual twitter username and you are all done.