Snippet

cara membuat table

<!--membuat_tabel.html-->
<html>
<body>
<h4>
This table has a caption,
and thick border:
</h4>
<table border= "6">
<caption>My Caption</caption>
<tr>
    <td>100</td>
    <td>200</td>
    <td>300</td>
</tr>
<tr>
    <td>400</td>
    <td>500</td>
    <td>600</td>
</tr>
</table>
</body>
</html>

Leave a Reply

diooda