Diferencia entre revisiones de «Usuario:ManuelRomero/HTML5»
De WikiEducator
(Página creada con '==Referencia== http://www.w3schools.com/html5/default.asp ==Sintaxis== Un documento html5 debe comenzar con la declaración siguiente <source lang=HTML5> <!DOCTYPE html> </so…') |
(→Sintaxis) |
||
(3 revisiones intermedias por el mismo usuario no mostrado) | |||
Línea 1: | Línea 1: | ||
+ | {{TEP}} | ||
==Referencia== | ==Referencia== | ||
http://www.w3schools.com/html5/default.asp | http://www.w3schools.com/html5/default.asp | ||
==Sintaxis== | ==Sintaxis== | ||
− | + | *un documento html5 debe comenzar con la declaración '''<!DOCTYPE html>''' | |
− | <source lang= | + | *un documento html5 debe tener las siguientes etiquetas |
− | + | <source lang=html4strict> | |
+ | <!DOCTYPE html> | ||
+ | <html> | ||
+ | <head> | ||
+ | <title>Title of the document</title> | ||
+ | </head> | ||
+ | |||
+ | <body> | ||
+ | El contenido del documento | ||
+ | </body> | ||
+ | </html> | ||
</source> | </source> | ||
+ | ===Etiqueta nav=== | ||
+ | http://accesibilidadenlaweb.blogspot.com.es/2011/03/la-etiqueta-de-html5.html |
Última revisión de 22:56 28 nov 2013
Trabajo en proceso, espera cambios frecuentes. Tu ayuda y retroalimentación son bienvenidos. Ver página de charlas. |
Referencia
http://www.w3schools.com/html5/default.asp
Sintaxis
- un documento html5 debe comenzar con la declaración <!DOCTYPE html>
- un documento html5 debe tener las siguientes etiquetas
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> El contenido del documento </body> </html>
http://accesibilidadenlaweb.blogspot.com.es/2011/03/la-etiqueta-de-html5.html