-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPeliculas.html
70 lines (66 loc) · 1.54 KB
/
Peliculas.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE HTML>
<html lang="es">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo2.css" />
<meta name="author" content = "Pedro Garcia-Cañal">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="descripcion" content = "Html peliculas del señor de los anillos">
<title>Peliculas del señor de los anillos</title>
</head>
<body>
<header><h1>Peliculas</h1></header>
<aside>
<nav>
<ul>
<li><a href = "index.html">Inicio</a></li>
<li><a href = "Creacion.html">Creacion</a></li>
<li><a href = "Equipo.html">Equipo</a></li>
<li><a href = "Personajes.html">Personajes</a></li>
<li><a href = "Premios.html">Premios</a></li>
<li><a href = "Resumen.html">Resumen</a></li>
</ul>
</nav>
</aside>
<main>
<div class = "contenedor">
<table class = "tabla">
<caption> Peliculas </caption>
<thead>
<tr>
<th>Titulo</th>
<th>Fecha de estreno</th>
<th>Duracion</th>
<th>Presupuesto(en USD)</th>
<th>Recaudacion total mundial(USD)</th>
</tr>
</thead>
<tbody>
<tr>
<td>La Comunidad del Anillo</td>
<td>19 de Diciembre de 2001</td>
<td>178 min</td>
<td>93 millones</td>
<td>871.530.324</td>
</tr>
<tr>
<td>Las 2 torres</td>
<td>18 de Diciembre de 2002</td>
<td>179 min</td>
<td>94 millones</td>
<td>926.047.111</td>
</tr>
<tr>
<td>El retorno del rey</td>
<td>17 de Diciembre de 2003</td>
<td>200 min</td>
<td>94 millones</td>
<td>1.119.929.521</td>
</tr>
</tbody>
</table>
</div>
</main>
</body>
</html>