write the html program to insert a table that has 3 columns and 4 rows
Answers
Answered by
18
Answer:
I have used border attribute in table tag so that the border will visible on your web browser.
<table border="1">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
Answered by
7
refer to the attachment
hope it helps u ✌
Attachments:
Similar questions