Answers for "designing table in html"

0

HTML Simple Table Code

<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

Code answers related to "designing table in html"

Browse Popular Code Answers by Language