Etiquetas medias en HTML

Etiquetas

Footer

<footer>
<p>Derechos reservados 2025</p>
</footer>

Nav

<nav>
<a href="#inicio">Inicio</a>
<a href="#contacto">Contacto</a>
</nav>

Table

<table border="1">
<tr>
<th>Nombre</th>
<th>Edad</th>
</tr>
<tr>
<td>Juan</td>
<td>25</td>
</tr>
</table>

Form

<form action="/procesar" method="POST">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre">
<button type="submit">Enviar</button>
</form>

Ejemplos en la página

Footer

footer

Nav

nav

Table

tablas

Form

form

Obra publicada con Licencia Creative Commons Reconocimiento Compartir igual 4.0

Creado con eXeLearning (Ventana nueva)