diff options
author | Jesús <heckyel@hyperbola.info> | 2019-04-12 11:59:11 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-04-12 11:59:11 -0500 |
commit | 4f9419993e91008bda526a7a9c05a83fe841fbdc (patch) | |
tree | b3fedf81c8d6b3ea85fa42ae3613a2599c3b3559 /content/articles/course-html5/sintaxis-html5.md | |
parent | c864a650de5c944386721f3719a5fbb145e77024 (diff) | |
download | libretube-4f9419993e91008bda526a7a9c05a83fe841fbdc.tar.lz libretube-4f9419993e91008bda526a7a9c05a83fe841fbdc.tar.xz libretube-4f9419993e91008bda526a7a9c05a83fe841fbdc.zip |
organize the information of the video-articles
Diffstat (limited to 'content/articles/course-html5/sintaxis-html5.md')
-rw-r--r-- | content/articles/course-html5/sintaxis-html5.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/content/articles/course-html5/sintaxis-html5.md b/content/articles/course-html5/sintaxis-html5.md index 5909aca..80bccc8 100644 --- a/content/articles/course-html5/sintaxis-html5.md +++ b/content/articles/course-html5/sintaxis-html5.md @@ -16,9 +16,14 @@ Title: Sintaxis HTML5 # Sintaxis HTML5 3/32 +En HTML5 se maneja una sintaxis simple sin tantos dolores de cabeza. +También coloco un enlace al [validador][validator]{:target="_blank" rel="noopener noreferrer"} de la W3C. +para testear el código :). +A continuación se muestra la sintaxis básica. + <details markdown="span"> <summary>Mostrar Más</summary> -<p class="mb-0">[Validador][validator]{:target="_blank" rel="noopener noreferrer"}</p> +Estructura básica: ~~~~{.html} <!doctype html> <html lang="en"> @@ -33,3 +38,5 @@ Title: Sintaxis HTML5 </details> [validator]: https://validator.w3.org/ +*[HTML5]: Hyper Text Markup Language version 5 +*[W3C]: World Wide Web Consortium |