Answers for "how mage in table html"

0

plain table in html

<table>
 <tr>
  <th>Name</th>
  <th>Favorite Color</th>
 </tr>
 <tr>
  <td>Bob</td>
  <td>Yellow</td>
 </tr>
 <tr>
  <td>Michelle</td>
  <td>Purple</td>
 </tr>
</table>
Posted by: Guest on March-04-2021

Browse Popular Code Answers by Language