Write an HTML table tag sequence that outputs the following:
10 pcs 200 300
20 pcs 3 40

Submitted by: Muhammad
<table>
<tr>
<td>10 pcs</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>20 pcs</td>
<td>3</td>
<td>40</td>
</tr>
</table>
Submitted by: Muhammad

Read Online HTML Developer Job Interview Questions And Answers