Home / Questions / Write an HTML table tag sequence that outputs the following:50 pcs 100 50010 pcs 5 50
Explanatory Question

Write an HTML table tag sequence that outputs the following:
50 pcs 100 500
10 pcs 5 50

👁 4,791 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation


<table> 
<tr> 
<td>50 pcs</td> 
<td>100</td> 
<td>500</td> 
</tr> 
<tr> 
<td>10 pcs</td> 
<td>5</td> 
<td>50</td> 
</tr> 
</table>