Skip to content

Instantly share code, notes, and snippets.

@ilyasozkurt
Created February 23, 2023 11:57
Show Gist options
  • Save ilyasozkurt/037807062d7d2f323e2fc6d1de12e728 to your computer and use it in GitHub Desktop.
Save ilyasozkurt/037807062d7d2f323e2fc6d1de12e728 to your computer and use it in GitHub Desktop.
<table id="myTable">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Gender</th>
<th>Occupation</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>25</td>
<td>Male</td>
<td>Developer</td>
</tr>
<tr>
<td>Jane</td>
<td>30</td>
<td>Female</td>
<td>Designer</td>
</tr>
<tr>
<td>Mark</td>
<td>40</td>
<td>Male</td>
<td>Manager</td>
</tr>
<tr>
<td>Mary</td>
<td>35</td>
<td>Female</td>
<td>Engineer</td>
</tr>
<!-- more rows here -->
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment