diff options
author | Jesús <heckyel@hyperbola.info> | 2019-04-24 17:43:46 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-04-24 17:43:46 -0500 |
commit | 04b00d555d068b314406a8374cf9bd60c3de9c1a (patch) | |
tree | beae9e3a874fe69ad44d6d723535dd7922f6bb1c /content/articles/course-html5/sintaxis-html5.md | |
parent | 0b7754d69930a9ee4dcfe366ad6e997c91b5f78b (diff) | |
download | libretube-04b00d555d068b314406a8374cf9bd60c3de9c1a.tar.lz libretube-04b00d555d068b314406a8374cf9bd60c3de9c1a.tar.xz libretube-04b00d555d068b314406a8374cf9bd60c3de9c1a.zip |
fix semantic video
Diffstat (limited to 'content/articles/course-html5/sintaxis-html5.md')
-rw-r--r-- | content/articles/course-html5/sintaxis-html5.md | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/content/articles/course-html5/sintaxis-html5.md b/content/articles/course-html5/sintaxis-html5.md index 80bccc8..2365a47 100644 --- a/content/articles/course-html5/sintaxis-html5.md +++ b/content/articles/course-html5/sintaxis-html5.md @@ -9,12 +9,15 @@ Tags: html Time: 09:57 Title: Sintaxis HTML5 -<video id="player-ply" playsinline controls> - <source src="https://archive.org/download/coursehtml5/0003-Sintaxis-HTML5.webm" type="video/webm"> - <track kind="captions" label="Español" src="{static}/wp-content/uploads/article/subtitles/2019/03/0003-sintaxis-html5-es.vtt" srclang="es" default> -</video> - -# Sintaxis HTML5 3/32 +<figure> + <video id="player-ply" playsinline controls> + <source src="https://archive.org/download/coursehtml5/0003-Sintaxis-HTML5.webm" type="video/webm"> + <track kind="captions" label="Español" src="{static}/wp-content/uploads/article/subtitles/2019/03/0003-sintaxis-html5-es.vtt" srclang="es" default> + </video> + <figcaption> + <h1>Sintaxis HTML5 3/32</h1> + </figcaption> +</figure> 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. |