-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmedia.html
More file actions
39 lines (37 loc) · 1.43 KB
/
media.html
File metadata and controls
39 lines (37 loc) · 1.43 KB
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
<!--Tipo de documento a mostrar-->
<!doctype html>
<html>
<head>
<!--Definimos el titulo de nuestra página a mostrar-->
<title>Superpagina.com</title>
<!--Definimos la codificación de nuestro documento HTML-->
<meta charset="UTF-8">
<!--Descripción de nuestra página-->
<meta name="description" content="Una página chida">
<!--Autor de la página-->
<meta name="author" content="Ricardo">
<!--html5shiv Script que nos permite utilizar HTML5
en Internet Explorer 9 para atras
-->
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<video width="400" controls>
<source src="assets/video/31minutos-LaCorchetis-Sonpololos.mp4"
type="video/mp4">
Tu navegador no soporta HTML5 :(
</video>
<iframe width="420" height="315"
src="https://www.youtube.com/embed/0HoxZKSD-_c?autoplay=0">
</iframe>
<audio controls>
<source src="assets/audio/bailan_sin_cesar.mp3" type="audio/mpeg">
Tu navegador no soporta HTML5 :(
</audio>
<iframe frameborder="0" width="480" height="270"
src="https://www.dailymotion.com/embed/video/x6ea1l8"
allowfullscreen allow="autoplay"></iframe>
</body>
</html>