Skip to content

Instantly share code, notes, and snippets.

@daanyaalkapadia
Created September 30, 2020 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daanyaalkapadia/5427ac914f9f6a12cd56ae95ca917d3d to your computer and use it in GitHub Desktop.
Save daanyaalkapadia/5427ac914f9f6a12cd56ae95ca917d3d to your computer and use it in GitHub Desktop.
Example of table tag in html
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Daanyaal</td>
<td>daanyaalkapadia13@gmail.com</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment