-
-
Save ilyasozkurt/037807062d7d2f323e2fc6d1de12e728 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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