<script></script>
2-Json ile twitter bilgilerimizi çekiyoruz ; (kullaniciadi yazan yere kendi twitter kullanıcı adınızı yazın.)
<script>
$.getJSON("http://api.twitter.com/1/users/show.json?screen_name=kullaniciadi&callback=?", function(veri){
$(".twitter").append(' '+veri.followers_count+'');
});
</script>
3-Twitter classına sahip bir div oluşturuyoruz ;