Skip to content

Instantly share code, notes, and snippets.

@vicegd
Last active August 11, 2022 06:51
Show Gist options
  • Save vicegd/3bc3f410acceb2665a8d to your computer and use it in GitHub Desktop.
Save vicegd/3bc3f410acceb2665a8d to your computer and use it in GitHub Desktop.
Reveal.JS - Tables
<section>
<h2>Tablas con información</h2>
<table>
<thead><tr>
<th>Ciudad</th>
<th>Año de fundación</th>
<th>Población</th>
</tr></thead>
<tbody><tr>
<td>Gijón</td>
<td>Siglo V a. C.</td>
<td>274290</td>
</tr>
<tr>
<td>Oviedo</td>
<td>761</td>
<td>221870</td>
</tr></tbody>
</table>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment