forked from csaai/practica-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathejercicio8.html
37 lines (37 loc) · 1.28 KB
/
ejercicio8.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
<!DOCTYPE html>
<html>
<head>
<title>CSSAI - Práctica II</title>
</head>
<body>
<h1>Prática I - Ejercicio 8</h1>
<table>
<tr><td>
<video src="http://download.blender.org/peach/bigbuckbunny_movies/big_buck_bunny_480p_surround-fix.avi"
poster ="http://media.xiph.org/BBB/BBB-360-png/big_buck_bunny_00703.png"
width=400/>
</td>
<td><h2>Big Buck Bunny</h2>
Aqui va toda la información relativa a Big Buck Bunny
</td>
</tr>
<tr><td>
<video src="http://media.w3.org/2010/05/sintel/trailer.webm"
poster="http://media.w3.org/2010/05/sintel/poster.png" width=400 controls/>
</td>
<td><h2>Sintel</h2>
<ul><li>Pueden añadirse listas</li>
<li>Con todos los elementos que se deesen</li>
</ul>
</td>
</tr>
<tr><td>
<video src="http://simpl.info/video/video/chrome.webm"
poster = "http://simpl.info/video/images/poster.jpg" width=400 controls/>
</td>
<td><h2>Chrome</h2>
</td>
</tr>
</table>
</body>
</html>