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> Reply
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. Reply
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>
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.