Membuat Tabel dan Seting Atribut
By Raden Ikram | HTMLTables <table></table> membuat table <tr></tr> set row pada tiap table <td></td> set cell pada tiap row <th></th> set table header contoh: <table width=”200″ border=”1″> <tr> <th>header</th> </tr> <tr> <td>isi</td> </tr> </table> akan menghasilkan: header isi Table Attributes <table border=”0″> set ukuran border <table cellspacing=”1″> set ukuran spasi antar table cell <table cellpadding=”1″> set spasi antara
