blob: 0332b1deb8c9722eb21317c9b5b49d7baa90fb45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>
|