-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo.html
More file actions
executable file
·45 lines (25 loc) · 855 Bytes
/
video.html
File metadata and controls
executable file
·45 lines (25 loc) · 855 Bytes
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Video</title>
</head>
<body>
<!-- web.m ogg mp4 -->
<video src="video.mp4" controls='controls' width='200px' height='200px'>
Tu navegador no soporta video html5
</video>
<video controls='controls' width='200px' height='200px'>
<source src='video.mp4' type='video/mp4'/>
<source src='video.ogg' type='video/ogg'/>
<source src='video.webm' type='video/webm'/>
Tu navegador no soporta video html5
</video>
<!-- El atributo poster permite usar una imagen de fondo si un codec(formato) de video no lo reconoce el navegador. -->
<video controls="controls" poster="http://RutaDeLaImagen">
</video>
Gisselle.
http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5/
http://easyhtml5video.com/
</body>
</html>