Last active
March 24, 2021 17:49
-
-
Save MainakRepositor/ce37522958300e45d4efbd85826d5417 to your computer and use it in GitHub Desktop.
Basic html syntaxes
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
<-- Snippet to make a html table in a webpage --> | |
<table> | |
<thead> | |
<tr> | |
<th>heading 1 </th> | |
<th>heading 2</th> | |
<th>heading 3</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<!-- In the same row--> | |
<td>table data 1 (row 1,column 1)</td> | |
<td>table data 2 (row 1,column 2)</td> | |
<td>table data 3 (row 1,column 3)</td> | |
</tr> | |
<tr> | |
<td>table data 4 (row 2,column 1)</td> | |
<td>table data 5 (row 2,column 2)</td> | |
<td>table data 6 (row 2,column 3)</td> | |
</tr> | |
<tr> | |
<td>table data 7 (row 3,column 1)</td> | |
<td>table data 8 (row 3,column 2)</td> | |
<td>table data 9 (row 3,column 3)</td> | |
</tr> | |
<tr> | |
</tr> | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment