Table

  • <table> représente un tableau de données

Attribut :

  1. summary : résumé du tableau

  • <table>: balise bloc

<table summary="résumé du tableau">
	<thead>
		<tr>
			<th>Nom</th>
			<th>Prénom</th>
		</tr>
	</thead>
</table>

Last updated