Diferencia entre revisiones de «Usuario:Lmorillas/modulo lenguajes de marcas/html5/presentacion»
De WikiEducator
(Una revisión intermedia por el mismo usuario no mostrado) | |||
Línea 1: | Línea 1: | ||
+ | {{MiTitulo|Introducción a HTML5}} | ||
+ | |||
{{Objetivo| | {{Objetivo| | ||
* Muy compatible con lo que ya existe | * Muy compatible con lo que ya existe | ||
Línea 46: | Línea 48: | ||
<source lang="html4strict"> | <source lang="html4strict"> | ||
<!DOCTYPE html> | <!DOCTYPE html> | ||
− | + | <head> | |
− | <meta charset="utf-8" /> | + | <meta charset="utf-8" /> |
+ | <link rel="stylesheet" href="style-original.css" /> | ||
+ | </head> | ||
</source> | </source> | ||
|Title=Meta diferencias}} | |Title=Meta diferencias}} | ||
Línea 60: | Línea 64: | ||
* http://html5gallery.com/ | * http://html5gallery.com/ | ||
}} | }} | ||
+ | |||
+ | <source lang="html4strict"> | ||
+ | <!DOCTYPE html> | ||
+ | <html> | ||
+ | <head> | ||
+ | <meta charset="utf-8" /> | ||
+ | <title>Título</title> | ||
+ | <link href="css/html5reset.css" rel="stylesheet" /> | ||
+ | <link href="css/style.css" rel="stylesheet" /> | ||
+ | </head> | ||
+ | <body> | ||
+ | <header> | ||
+ | <hgroup> | ||
+ | <h1>Cabecera en h1</h1> | ||
+ | <h2>Subtítulo in h2</h2> | ||
+ | </hgroup> | ||
+ | </header> | ||
+ | <nav> | ||
+ | <ul> | ||
+ | <li><a href="#">Opción de menú 1</a></li> | ||
+ | <li><a href="#">Opción de menú 2</a></li> | ||
+ | <li><a href="#">Opción de menú 3</a></li> | ||
+ | </ul> | ||
+ | </nav> | ||
+ | <section> | ||
+ | <article> | ||
+ | <header> | ||
+ | <h1>Artículo #1</h1> | ||
+ | </header> | ||
+ | <section> | ||
+ | Este es el primer artículo. Está <mark>destacado</mark>. | ||
+ | </section> | ||
+ | </article> | ||
+ | <article> | ||
+ | <header> | ||
+ | <h1>Artículo #2</h1> | ||
+ | </header> | ||
+ | <section> | ||
+ | Este es el segundo artículo. Pueden ser posts de un blog, etc. | ||
+ | </section> | ||
+ | </article> | ||
+ | </section> | ||
+ | <aside> | ||
+ | <section> | ||
+ | <h1>Links</h1> | ||
+ | <ul> | ||
+ | <li><a href="#">Link 1</a></li> | ||
+ | <li><a href="#">Link 2</a></li> | ||
+ | <li><a href="#">Link 3</a></li> | ||
+ | </ul> | ||
+ | </section> | ||
+ | <figure> | ||
+ | <img width="85" height="85" | ||
+ | src="http://www.windowsdevbootcamp.com/Images/JennMar.jpg" | ||
+ | alt="Jennifer Marsman" /> | ||
+ | <figcaption>Jennifer Marsman</figcaption> | ||
+ | </figure> | ||
+ | </aside> | ||
+ | <footer>Pie de página - Copyright 2011</footer> | ||
+ | </body> | ||
+ | </html> | ||
+ | </source> |
Última revisión de 09:25 18 abr 2013
|
<nav>, <header>, <footer> y <article>.
|
|
</DIV>
<!DOCTYPE html> <head> <meta charset="utf-8" /> <link rel="stylesheet" href="style-original.css" /> </head> |
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Título</title> <link href="css/html5reset.css" rel="stylesheet" /> <link href="css/style.css" rel="stylesheet" /> </head> <body> <header> <hgroup> <h1>Cabecera en h1</h1> <h2>Subtítulo in h2</h2> </hgroup> </header> <nav> <ul> <li><a href="#">Opción de menú 1</a></li> <li><a href="#">Opción de menú 2</a></li> <li><a href="#">Opción de menú 3</a></li> </ul> </nav> <section> <article> <header> <h1>Artículo #1</h1> </header> <section> Este es el primer artículo. Está <mark>destacado</mark>. </section> </article> <article> <header> <h1>Artículo #2</h1> </header> <section> Este es el segundo artículo. Pueden ser posts de un blog, etc. </section> </article> </section> <aside> <section> <h1>Links</h1> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> <li><a href="#">Link 3</a></li> </ul> </section> <figure> <img width="85" height="85" src="http://www.windowsdevbootcamp.com/Images/JennMar.jpg" alt="Jennifer Marsman" /> <figcaption>Jennifer Marsman</figcaption> </figure> </aside> <footer>Pie de página - Copyright 2011</footer> </body> </html>