Background

Membuat Tabel

kali ini saya akan memberikan cara membuat tabel :

<html>
<head>
<title> Membuat Tabel </title>
</head>
<body>
<p><b> Membuat Tabel </p></b>
<table border="1" bordercolor="black" bgcolor="green" cellpadding="8" cellspacing="0" widht="100%">
<tr> <!-- <tr> artinya membuat sebuah baris -->
<td> Ini kolom 1 pada baris 1</td>
<td> Ini kolom 2 pada baris 1</td>
<tr>
<td> Ini kolom 1 pada baris 2 </td>
<td> Ini kolom 2 pada baris 2 </td>
</tr>
</table>
</body>
</html

Categories: Share

Leave a Reply