how to create table in html by saving it
Answers
Answered by
4
to create a table in HTML you need to apply the table tag . there is a simple example..
<table>
<tr>
<th>hello
</th>
</tr>
<tr>
<td>hello2
</td>
</tr>
</table>
the output will be like this :
Similar questions