-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
42 lines (37 loc) · 903 Bytes
/
index.html
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
<!doctype html>
<html>
<head>
<title>Tarea 3</title>
<link rel="stylesheet" href="estilos.css"/>
<style>
.sombras {
/*sombras*/
-webkit-box-shadow: 0px 0px 5px 3px #333;
-moz-box-shadow: 0px 0px 5px 3px #333;
-o-box-shadow: 0px 0px 5px 3px #333;
box-shadow: 0px 0px 5px 3px white;
}
</style>
<script src="javascript/jquery-1.10.2.min.js"></script>
<script>
// SU CODIGO AQUI
</script>
</head>
<body>
<div id="contenedor">
<video id="video">
<source src="videos/gato.mp4" type="video/mp4" >
<source src="videos/gato.ogg" type="video/ogg" >
<source src="videos/gato.webm" type="video/webm" >
Tu navegador no soporta video nativo
</video>
<p id="estado-video" >
Video inactivo
</p>
<p id="controles">
<a id="boton-reproducir">Reproducir</a>
<a id="boton-pausa">Pausa</a>
</p>
</div>
</body>
</html>