Answers for "table special characters html"

1

How to code table headings in html

<th></th>
Posted by: Guest on February-27-2021
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