an html table begin with what table tag and ends with what that table tag
Answers
Answered by
0
Answer:
Step-by-step explanation:
Generally, we use table tag to insert table in html file. Table header stats with <th> tag and end with </th> tag.
Answered by
0
an html table begin with what table tag and ends with what that table tag
answer is=
<table>
<tr> <!--table row-->
<th> </th> <!--table header-->
</tr>
<tr>
<td> </td> <!--table data-->
</tr>
Similar questions