diff options
author | Jesús <heckyel@hyperbola.info> | 2019-04-08 21:32:21 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-04-08 21:32:21 -0500 |
commit | 333dfd6f52f92a88264310710c95330ddce82e71 (patch) | |
tree | cd8ad7746aadcec461ebd38edd0ede104f578c69 /content/articles/course-html5/sintaxis-html5.md | |
download | libretube-333dfd6f52f92a88264310710c95330ddce82e71.tar.lz libretube-333dfd6f52f92a88264310710c95330ddce82e71.tar.xz libretube-333dfd6f52f92a88264310710c95330ddce82e71.zip |
first commit
Diffstat (limited to 'content/articles/course-html5/sintaxis-html5.md')
-rw-r--r-- | content/articles/course-html5/sintaxis-html5.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/content/articles/course-html5/sintaxis-html5.md b/content/articles/course-html5/sintaxis-html5.md new file mode 100644 index 0000000..0332b1d --- /dev/null +++ b/content/articles/course-html5/sintaxis-html5.md @@ -0,0 +1,29 @@ +Author: Jesús E. +Category: courses +Date: 2019-03-25 11:09 +Image: 2019/03/sintaxis-html5.jpg +Lang: es +Slug: html5-sintaxis +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> + +<details markdown="span"> +<summary>Sintaxis HTML5 3/32</summary> +~~~~{.html} +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title>Mi primera web en HTML5</title> + </head> + <body> + </body> +</html> +~~~~ +</details> |