-
Notifications
You must be signed in to change notification settings - Fork 0
/
bso.html
137 lines (133 loc) · 5.07 KB
/
bso.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE HTML>
<html lang="es">
<head>
<meta charset="UTF-8"/>
<title>El padrino bso</title>
<link rel="stylesheet" type="text/css" href="estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo2.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name=author content="Elena Rodríguez Río">
<meta name="keywords" content="el padrino,pelicula,Al Pacino,Marlon Brando,Coppola,Corleone, Nino Rota">
</head>
<body>
<header>
<h1>El Padrino</h1>
</header>
<nav>
<h2>Índice</h2>
<ul id = "indice">
<li><a href="./index.html" accesskey="i" title="enlace a la introdiccion">Introduccion y realización</a></li>
<li><a href="./argumento.html" accesskey="a" title="enlace al argumento">Argumento y personajes</a></li>
<li><a href="./premios.html" accesskey="p" title="enlace a los premios">Premios</a></li>
<li><a href="./secuelas.html" accesskey="s" title="enlace a las secuelas">Secuelas</a></li>
<li><a href="./bso.html" accesskey="b" title="enlace a la banda sonora">Banda sonora</a></li>
</ul>
</nav>
<main>
<section id = "bso">
<h2>Banda sonora</h2>
<p>La banda sonora de la película fue compuesta por Nino Rota.</p>
<audio src = "./multimedia/waltz.mp3" controls></audio>
<section id="cara1">
<h3>Cara uno</h3>
<table>
<tr class= "tabla">
<th>Nº.</th>
<th>Título</th>
<th>Autor(es)</th>
<th>Duración</th>
</tr>
<tr>
<td>1.</td>
<td>"Main Title (The Godfather Waltz)"</td>
<td>Nino Rota</td>
<td>3:04</td>
</tr>
<tr>
<td>2.</td>
<td>"I Have But One Heart"</td>
<td>Johnny Farrow, Marty Symes</td>
<td>3:00</td>
</tr>
<tr>
<td>3.</td>
<td>"The Pickup"</td>
<td>Nino Rota</td>
<td>2:56</td>
</tr>
<tr>
<td>4.</td>
<td>"Connie's Wedding"</td>
<td>Carmine Coppola</td>
<td>1:33</td>
</tr>
<tr>
<td>5.</td>
<td>"The Halls of Fear"</td>
<td>Nino Rota</td>
<td>2:12</td>
</tr>
<tr>
<td>6.</td>
<td>"Sicilian Pastorale"</td>
<td>Nino Rota</td>
<td>3:03</td>
</tr>
</table>
</section>
<section id="cara2">
<h3>Cara dos</h3>
<table>
<tr class= "tabla">
<th>Nº.</th>
<th>Título</th>
<th>Autor(es)</th>
<th>Duración</th>
</tr>
<tr>
<td>1.</td>
<td>"Love Theme from The Godfather"</td>
<td>Nino Rota</td>
<td>2:37</td>
</tr>
<tr>
<td>2.</td>
<td>"The Godfather Waltz"</td>
<td>Nino Rota</td>
<td>3:35</td>
</tr>
<tr>
<td>3.</td>
<td>"Apollonia"</td>
<td>Nino Rota</td>
<td>1:22</td>
</tr>
<tr>
<td>4.</td>
<td>"The New Godfather"</td>
<td>Nino Rota</td>
<td>2:00</td>
</tr>
<tr>
<td>5.</td>
<td>"The Baptism"</td>
<td>Nino Rota</td>
<td>1:51</td>
</tr>
<tr>
<td>6.</td>
<td>"The Godfather Finale"</td>
<td>Nino Rota</td>
<td>3:50</td>
</tr>
</table>
</section>
</section>
</main>
<footer>
<a href="https://www.filmaffinity.com/es/film809297.html">Filmaffinity</a>
<a href="http://www.sensacine.com/peliculas/pelicula-1628/">Sensacine</a>
<a href="https://www.imdb.com/title/tt0068646/">IMDg</a>
</footer>
</body>
</html>