Last active
June 12, 2019 14:04
-
-
Save RaShellM/e8975d96d6719ab959d87232579739fa to your computer and use it in GitHub Desktop.
tableau html
This file contains hidden or 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> | |
<tr> <!-- nouvelle ligne (t. row)--> | |
<th> <!-- titre (table head)--> | |
TITRE DU TABLEAU | |
</th> | |
</tr> | |
<tr> <!-- donne les lignes (row)--> | |
<td> <!-- nouvelle colonne (division)--> | |
Premiere ligne Première colonne | |
</td> | |
</tr> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment