Write a HTML table tag sequence that outputs the following

Technology CommunityCategory: HTML5Write a HTML table tag sequence that outputs the following
VietMX Staff asked 3 years ago

Write a HTML table tag sequence that outputs the following:

50 pcs 100 500
10 pcs 5 50

Answer:

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