HTML5 Básico - Basic HTML
| I. HTML5 Básico - Basic HTML5 |
<!DOCTYPE html>
<html lang="es"><!-- Idioma español - Spanish Language (in english is: lang="en" -->
<head>
<title>Título/Title</title>
<meta charset="utf-8"><!-- Juego de caracteres en utf8 - character set in utf8 -->
</head>
<body>
<header>
<h1>Encabezado/Header H1</h1>
</header>
<section>
<article>
<h1>H1 en la etiqueta <article> / H1 in <article> tag</h1>
<p>p dentro de <article> / p in <article> tag</p>
</article>
<article>
<h1>H1 en la etiqueta <article> / H1 in <article> tag</h1>
<p>p dentro de <article> / p in <article> tag</p>
</article>
<nav>
<a href="http://www.vargux.org">Enlace/Link 1</a>
<a href="http://3mb.vargux.org">Enlace/Link 2</a>
</nav>
</section>
<section>
</section>
<footer>
<p>p dentro de <footer> / p in <footer> tag</p>
</footer>
</body>
</html>Ver el código - See the code |











0 comentarios / comments:
Publicar un comentario