Kepada Blogger IT, Teknologi atau Berkaitan Dunia Teknologi, Mari Bertukar Link Dengan Blog ini



Translate

Thursday, September 13, 2012

Cara Untuk Add Scroll Bar Widget Blogger Anda




1.Login ke blogger dashboard anda dan pergi ke Design & Page Elements.

2.Click kat 'Add a Gadget' anda di sidebar.

3.Pilih 'HTML/Javascript' dan tambah code di bawah dan click save.


<div style="overflow:auto;width:260px;height:300px;padding:10px;"> 
<ul>

<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>
<li><a href="Your Link">Your Text</a></li>

</ul>
</div>

Note: Gantikan Your Link and Your Text  dengan url dan text anda.

Selesai.
Read more >>

Wednesday, September 12, 2012

How To Add Snow Effect On The Blogger Mouse Cursor Area





Salam sejahtera. di sini saya ingintunjukkan salji effect untuk mouse cursor di dalam blog anda. Salji effect ini sangat ringan dan telah di cuba dalam internet explorer(IE), Mozilla Firefox dan lain2 web browser. Saya akan tunjukkan cara mudah untuk memasang tetikus salji effect di blog anda. Sila tinggalkan komen jika ada apa apa masalah dan terima kasih kerana mengunjungi blog ini.


1.Login ke blogger Dashboard anda dan pergi ke Design --> Page Elements.

2.Click kat 'Add a Gadget' di sidebar.

3.Pilih 'HTML/Javascript' tambah salah satu code di bawah














<script type='text/javascript'>
// <![CDATA[
var colour="black";
var sparkles=100;

var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="3px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="3px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";

star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}

}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {


tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>

4. Sekarang Click Save 'JavaScript' dan selesai....

Picture From http://www.galaxygoo.org/blogs/galaxygoo/flashathon_20072008/
Read more >>

Cara Menambah Animated Recent Posts Untuk Blogger Dengan Thumbnails









1.Login ke blogger Dashboard dan pergi ke Design --> Page Elements.

2.Click kat 'Add a Gadget' di sidebar.

3.Pilih 'HTML/Javascript' dan  tambah code dibawah


<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<style type="text/css" media="screen">
<!--

#spylist {
overflow:hidden;
margin-top:5px;
padding:0px 0px;
height:350px;
}
#spylist ul{
width:220px;
overflow:hidden;
list-style-type: none;
padding: 0px 0px;
margin:0px 0px;
}
#spylist li {
width:208px;
padding: 5px 5px;
margin:0px 0px 5px 0px;
list-style-type:none;
float:none;
height:70px;
overflow: hidden;
background:#fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5Gc2nE-Vhdk4qUan3LXrV-eQ-jx29LtxgaJNTiy-6xS2cgAdnKL_5yaEtTFvNAC88lXdtImGwwiYVsYPpQiBMwQ8dHSzLQPl_K6zxCdBb71n6hwvpO1rTS_84cZt_fH9c_UTkfwnVmCw/) repeat-x;
border:1px solid #ddd;
}

#spylist li a {
text-decoration:none;
color:#4B545B;
font-size:11px;
height:18px;
overflow:hidden;
margin:0px 0px;
padding:0px 0px 2px 0px;
}
#spylist li img {
float:left;
margin-right:5px;
background:#EFEFEF;
border:0;
}
.spydate{
overflow:hidden;
font-size:10px;
color:#0284C2;
padding:2px 0px;
margin:1px 0px 0px 0px;
height:15px;
font-family:Tahoma,Arial,verdana, sans-serif;
}

.spycomment{
overflow:hidden;
font-family:Tahoma,Arial,verdana, sans-serif;
font-size:10px;
color:#262B2F;
padding:0px 0px;
margin:0px 0px;
}

-->
</style>

<script language='JavaScript'> 

imgr = new Array();

imgr[0] = "http://i43.tinypic.com/orpg0m.jpg";

imgr[1] = "http://i43.tinypic.com/orpg0m.jpg";

imgr[2] = "http://i43.tinypic.com/orpg0m.jpg";

imgr[3] = "http://i43.tinypic.com/orpg0m.jpg";

imgr[4] = "http://i43.tinypic.com/orpg0m.jpg";
showRandomImg = true;

boxwidth = 255;

cellspacing = 6;

borderColor = "#232c35";

bgTD = "#000000";

thumbwidth = 70;

thumbheight = 70;

fntsize = 12;

acolor = "#666";

aBold = true;

icon = " ";

text = "comments";

showPostDate = true;

summaryPost = 40;

summaryFontsize = 10;

summaryColor = "#666";

icon2 = " ";

numposts = 10;

home_page = "http://itsegmen.blogspot.com/";

limitspy=4
intervalspy=4000

</script>

<div id="spylist">
<script src='http://scriptabufarhan.googlecode.com/svn/trunk/recentpostthumbspy-min.js' type='text/javascript'></script>
</div>


Note: Gantikan home_page dengan url Blogger anda dan numposts = 10 ialah jumlah Post yang anda ingin tayangkan ..


4. Save Html Java Script anda dan selesai..


Read more >>

Monday, September 10, 2012

How to load Windows 7 onto a bootable USB key


19 Tips Every Windows 7 User Needs To Know
To complete your Windows 7 power-user experience, you may consider dropping the whole darn OS onto a USB drive. Whether you carry it around in your pocket or toss it in a desk drawer, it's a perfect boot disk for emergency installs-including those times when you're working with a netbook or some other computer that lacks an optical drive. Even better, your install times will be significantly reduced, thanks to your key's flash memory-we shaved off minutes from our total install time.
Here's how to create a schmancy-fancy boot key for either Windows 7 or Vista-but not for other OSes, so please don't try! We've run a truncated version of this article in the magazine before, but because it was so incredibly popular-and so germane to this feature story-we've decided to share it again, this time with more detail and screens.

1. Format Your USB Key
19 Tips Every Windows 7 User Needs To Know

19 Tips Every Windows 7 User Needs To Know
Plug in your USB key and back up any existing data stored on it. You'll need to format the key (thus erasing existing data) before you can make it a bootable device. We used an 8GB key, but a 4GB key will also work.

2. Partition that Key in CMD
19 Tips Every Windows 7 User Needs To Know
Open up a command prompt as an Administrator. You can do this by searching for cmd.exe in your Windows/System32 folder, right-clicking the executable, and selecting "Run as administrator." Alternatively, type CMD in the Start Menu search field and activate the command prompt using Ctrl + Shift + Enter.
19 Tips Every Windows 7 User Needs To Know
You should now be under C:\Windows\system32 (assuming your Windows partition is the C drive). Type diskpart in the command line to enter the Disk Partition command-line tool, which lets you format and create partitions on active disks. Now type list disk to reveal a list of all your active disks, each of which is associated with a number. Make a note of which one is your USB key, based on the capacity. In this screenshot, our USB drive is Disk 2.
3. Format Away (Command-Prompt Style)

It's now time to enter a load of commands to properly partition the key, and format for the NTFS (did you know this stands for "New Technology File System"?). In succession, enter the following-and type carefully, Jimbo!
Select Disk # (where # is the number of your USB disk. We typed Select Disk 2 for this job)
Clean (this removes any existing partitions from the USB disk, including any hidden sectors)
Create Partition Primary (creates a new primary partition with default parameters)
Select Partition 1 (focuses operation on the newly created partition)
Active (sets the partition to active, informing the disk firmware that this is a valid system partition)
Format FS=NTFS (formats the partition with the NTFS file system. This may take several minutes to complete, depending on the size of your USB key)
Assign (this gives the USB drive a Windows volume and next available drive letter, which you should write down. In our case, drive "L" was assigned)
Exit (quits the DiskPart tool)

4. Copy Windows DVD to a Desktop Folder
19 Tips Every Windows 7 User Needs To Know
Insert the Windows 7 installation DVD into your drive, and view the files that it contains. Copy all of the files to a folder on your Desktop. We put the disc contents in a folder named Windows 7.

5. Turn Your Key into a Bootable Device
19 Tips Every Windows 7 User Needs To Know
Now, go back to your command prompt, running it as an Administrator. Using the CD command, navigate your way to the folder where you placed the Windows disk ISO files. Your command line path should look something like C:\Users\USERNAMEHERE\Desktop\Windows 7\ if you followed our lead on folder placement. Now type the following commands:
CD Boot (this gets you into the boot directory)
Bootsect.exe /nt60 L: (this assumes L is the drive letter assigned to your USB key from the previous step)
In case you're wondering, Bootsect infuses boot manager–compatible code into your USB key to make it a bootable device. Also be aware that if you're currently running 32-bit Windows Vista or 7, Bootsect will only work if you use the files from the 32-bit Windows 7 install disc. The Bootsect executable from the 64-bit version will not run in 32-bit Vista. Don't forget it!

6. Load the USB Key with Your Install Files
19 Tips Every Windows 7 User Needs To Know
Copy all of the extracted ISO files into the USB drive. You don't need to do this from the command prompt. Just drag and drop the files from the Windows 7 folder into the USB drive using Windows Explorer. We also recommend copying your hardware drivers onto the same key so the installation wizard can find them.
Your USB key is now all ready to go! Plug it into your target system and make sure you enter the BIOS (typically by hitting F2 or F12) to temporarily change the boot order to allow booting from the USB key before your primary hard drive or optical drive. Now, when you plug the key into a machine, your system should automatically begin speedily downloading setup files off of the USB key and entering Windows 7 installation.


 http://gizmodo.com/5523272/19-tips-every-windows-7-user-needs-to-know
Read more >>

Add Twitter Tweet Button To Blogger


Add Twitter Tweet Button To Blogger
Twitter is one of the largest social media company in the world and they has released their official share buttons with counter. In this tutorial we will discuss on how to add this Tweet Button to Blogger. This button is an official button created by twitter developers and does not belong to a third party. As opposed to the retweet button this button loads quickly and does not disturb the load time of your website.

How To Add Twitter Tweet Button To Blogger?

Now let’s install the button:

1. Go to Blogger Dashboard > Template > Edit HTML.
2. Back up your template.
3. Tick the Expand Widget Templates.
4. Search (Ctrl + F) for following line of code in your HTML:

<data:post.body/>

5. Paste the below code immediately below/after that line:

<!-- Twitter Tweet Button Start -->
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<div style='text-align:left;padding:5px 5px 5px 0;'>
<a class='twitter-share-button' data-count='vertical' expr:data-text='data:post.title' expr:data-url='data:post.url' data-via='YourTwitterUsername' data-related='' href='http://twitter.com/share'>Tweet</a>
<script src='http://platform.twitter.com/widgets.js' type='text/javascript'></script>
</div>
</b:if>
<!-- Twitter Tweet Button End -->

6. Save it.

Button configuration:
  • Choose the type of button and follow recommendation by changing the value of the respective attributes in the code step 5.
Button type Attribute Value
               Twitter tweet with counter data-count vertical
          tweet counter on side horizontal
              tweet stand alone none

Follow recommendation 1
data-via YourTwitterUsername

Follow recommendation 2
data-related Second Twitter username

Button repositioning:


The steps above positioned the button on bottom left of each post. You can change the position if you wish:


  • Position it on top of post
  • Place the button code before <data:post.body/>, instead of after.
  • Position it on the right
  • Change the float in the code from left to right.
Read more >>

Sunday, September 9, 2012

Bagaimana menambah Facebook like button di dalam blogger post

How To Add Facebook Like Button To Blogger Posts?



  1. Pergi ke Blogger Dashboard > Design > Edit HTML
  2. Backup Template anda dahulu
  3. Tanda the expand widget check box
  4. Cari code dibawah di dalam template anda
<data:post.body/>

Jika anda inginkan like button berada di bawah title post anda sila tambah code diatas atau sebelum code di bawah
<data:post.body/>

Jika anda inginkan like button berada di bawah post anda sila tambah code dibawah atau selepas code di bawah 
<data:post.body/>

Facebook Like Button Styles


You can add like button in three styles :
  1. Vertical Count
  2. Horizontal Count
  3. Without Count

1. Vertical Count


<b:if cond='data:blog.pageType != &quot;static_page&quot;'> <iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.canonicalUrl + &quot;&amp;send=false&amp;layout=box_count&amp;show_faces=false&amp;width=55&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=62&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:55px; height:62px;'/> </b:if>

2. Horizontal Count


<b:if cond='data:blog.pageType != &quot;static_page&quot;'> <iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.canonicalUrl + &quot;&amp;send=false&amp;layout=button_count&amp;show_faces=false&amp;width=90&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:90px; height:21px;'/> </b:if>

3. Without Count


<b:if cond='data:blog.pageType != &quot;static_page&quot;'> <iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.canonicalUrl + &quot;&amp;send=false&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=35&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:450px; height:35px;'/> </b:if>

  Selamat mencuba
Read more >>

Tunjukkan Post lama anda dalam bentuk thumbnail

Post lama anda dipaparkankan


Step 1...


Step 2 ...


- Isikan Email, Url Blog anda, Platform , Dan Bilangan post yang ingin di paparkan
- Tekan Get Widget!


Step 3...
- Tekan Install Widget seperti gambar di atas

Step 4...


- Pilih Blog anda
- Letakkan title yang anda sukai seperti gambar di atas
- Tekan Add Widget 


Step 5...

- Save arrangement seperti gambar di atas




Step 6...
- View blog anda dan lihat hasilnya seperti gambar di bawah



" Perhatian : Tutorial ini hanyalah untuk mengembalikan Post lama anda supaya dapat dilihat semula tanpa dibazirkan begitu sahaja dan ia juga mampu menarik pembaca membaca post lama anda supaya ia tidak tersimpan tanpa di baca"


Read more >>

Saturday, September 8, 2012

Disable Right click dalam blogspot anda




Step 1.
- sign in blogger anda
- Pilih Template anda
- Pilih Edit HTML
-


Step 2...
- Tekan Proceed

Step 3...
- Check kan Expand Widget Templates seperti gambar diatas


Step 4...
- Kemudian cari <body> tag sepeti gambar diatas
- Paste code ini di bawah tag <body> seperti gambar diatas

<!-- no right clickfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -->
  <script type='text/javascript'>

function md(e)
{
  try { if (event.button==2||event.button==3) return false; } 
  catch (e) { if (e.which == 3) return false; }
}
document.oncontextmenu = function() { return false; }
document.ondragstart   = function() { return false; }
document.onmousedown   = md;

</script>

 <!-- no right clickfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -->

Step 5..
- Save Templates

- Pergi ke blog anda dan lihat hasilnya

"Perhatian: Tutorial ini hanyalah untuk melindungi post anda dari di salin oleh blogger lain dengan menggunakan cara menghapuskan right click mouse. Jika anda kedekut berkongsi maklumat dgn blogger lain ini lah salah satu caranya walaupun masih ada cara untuk menyalinnya"


Read more >>

Thursday, September 6, 2012

Tutorial Buat Facebook like Di tepi blog anda





facebook like di tepi seperti gambar di atas


Sign in Blogger
Click " Template " seperti gambar di bawah





Click " Edit Html " seperti di bawah



Search " </Head> " & Past Code ini sebelum " </Head> " Tag
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
Paste code ini diatas </head> seperti dalam rajah dibawah


Save Template...
Sekarang Pilih " Layout " Tab

>Add New Gadget
>Select " Html/Javascript "
Paste code dibawah di dalam HTML/Javascript tadi

 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
//<!--
$(document).ready(function() {$(".w2bslikebox").hover(function() {$(this).stop().animate({right: "0"}, "medium");}, function() {$(this).stop().animate({right: "-250"}, "medium");}, 500);});
//-->
</script>
<style type="text/css">
.w2bslikebox{background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCHD-LhGUcw8fgLg37_TMtp2TU32RFDi3WsxgFneuERr_TrkjSWZ20_kCVpev5foy12upXSelngpXvtL4T7WW3sbQPPKXY-ebmAJA-c61wyfmY9BhMcKjoz0i5qf8NUkuMG_OVm_pEwHKT/s1600/facebookbadge.png") no-repeat scroll left center transparent !important;display: block;float: right;height: 270px;padding: 0 5px 0 46px;width: 245px;z-index: 99999;position:fixed;right:-250px;top:20%;}
.w2bslikebox div{border:none;position:relative;display:block;}
.w2bslikebox span{bottom: 12px;font: 8px "lucida grande",tahoma,verdana,arial,sans-serif;position: absolute;right: 6px;text-align: right;z-index: 99999;}
.w2bslikebox span a{color: #808080;text-decoration:none;}
.w2bslikebox span a:hover{text-decoration:underline;}
</style><div class="w2bslikebox" style=""><div><iframe src="http://www.facebook.com/plugins/likebox.php?href=http://www.facebook.com/Remoih&amp;width=245&amp;colorscheme=light&amp;show_faces=true&amp;connections=9&amp;stream=false&amp;header=false&amp;height=270" scrolling="no" frameborder="0" scrolling="no" style="border: medium none; overflow: hidden; height: 270px; width: 245px;background:#fff;"></iframe></div></div>

Paste This Code & Click Save ......
seperti gambar di bawah



"Perhatian: tukar http://www.facebook.com/Remoih Kepada anda punya facebook url"
Selesai
selamat mencuba

Read more >>

Monday, September 3, 2012

Tutorial cara menggerakkan Title blog


 Cara menggerakkan title blog anda

1st-

Pergi ke Template blog anda dan click Edit HTML seperti gambar di bawah-

2nd-


tekan button proceed seperti gambar dibawah


3rd-

Letak script ini dia atas title </head> seperti gambar di bawah


<SCRIPT language='JavaScript'>
var txt=&quot;<data:blog.pageTitle/>&quot;;
var kecepatan=50;var segarkan=null;function bergerak() { document.title=txt;
txt=txt.substring(1,txt.length)+txt.charAt(0);
segarkan=setTimeout(&quot;bergerak()&quot;,kecepatan);}bergerak();
</SCRIPT>
</head>



4th-

Save dan Close



5th-

View blog dan lihatlah hasil blog anda seperti gambar dibawah

By http://itsegmen.blogspot.com/


"Perhatian: gambar title diatas tidak bergerak dan hanyalah sekadar contoh sehinggalah anda telah mencuba dan lihat hasilnya"
Read more >>



Popular Posts Blog IT Segment

Related Posts Plugin for WordPress, Blogger...

Rakan Bersama

Blogger tricks and toolz