Diferencia entre revisiones de «Usuario:Lmorillas/modulo lenguajes de marcas/html5/presentacion»
De WikiEducator
(2 revisiones intermedias 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 42: | Línea 44: | ||
: Se usan para encapsular una figura como un único elemento y contener el título de la figura, respectivamente. | : Se usan para encapsular una figura como un único elemento y contener el título de la figura, respectivamente. | ||
| Title = Elementos estructurales}} | | Title = Elementos estructurales}} | ||
+ | |||
+ | {{Objetivo| | ||
+ | <source lang="html4strict"> | ||
+ | <!DOCTYPE html> | ||
+ | <head> | ||
+ | <meta charset="utf-8" /> | ||
+ | <link rel="stylesheet" href="style-original.css" /> | ||
+ | </head> | ||
+ | </source> | ||
+ | |Title=Meta diferencias}} | ||
+ | |||
+ | {{Recursos de la Web| | ||
+ | == Documentación == | ||
+ | * http://mosaic.uoc.edu/2011/07/26/articulos-sobre-html5/ | ||
+ | * http://www.html5rocks.com/en/ | ||
+ | * http://www.ibm.com/developerworks/web/library/wa-html5fundamentals/ | ||
+ | * http://www.ibm.com/developerworks/training/kp/wa-kp-html5/index.html | ||
+ | == Ejemplos== | ||
+ | * 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>