This is default featured post 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Tuesday, January 8, 2013
Monday, January 7, 2013
Cara Membuat Tabel di HTML
<!-- diawali dg table dan diikuti dengan border -->
<!-- border=1 artinya bingkai tabel terlihat -->
<!-- tr = table row / tabel satu baris -->
<!-- td = table data / satu cell data -->
<table border=1>
<tr>
<td>baris satu kolom satu</td>
<td>baris satu kolom dua</td>
</tr>
<tr>
<td>baris dua kolom satu</td>
<td>baris dua kolom dua</td>
</tr>
</table>