-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbatallas.html
executable file
·59 lines (45 loc) · 2.22 KB
/
batallas.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
<title>Curriculum Vitae</title>
<meta name="description" content="Ejercicio HTML5: Desarrollar una Hoja de Vida virtual utilizando todos los contenidos estudiados en el programa" />
<meta name="keywords" content="curriculum vitae,hoja de vida,resumen curricular,ejercicio html5,final fantasy vii, next university" />
</head>
<body style="max-width:960px; margin: 0 auto;">
<header>
<img src="img/final-fantasy.svg" width="300px" title="Final Fantasy" alt="Final Fantasy" />
<h1>Curriculum Vitae</h1>
<h2>Cloud Strife</h2>
<h3><b>Fecha de nacimiento:</b> 19 de agosto</h3>
<h3><b>Lugar de nacimiento:</b> Nibelheim</h3>
<nav>
<a href="index.html">Información Personal</a> |
<a href="equipamento.html">Equipamento</a> |
<a href="batallas.html">Batallas</a>
</nav>
</header>
<hr/>
<main>
<h2>Batallas</h2>
<h3>Batalla en motocicletas en Advent Children</h3>
<video width="960px" poster="video/final-fantasy-vii-advent-children-part.jpg" controls preload="auto">
<source src="video/final-fantasy-vii-advent-children-part.mp4" type="video/mp4">
Tu navegador no puede reproducir videos MP4
</video>
<h3>Tema principal de Final Fantasy VII</h3>
<audio src="audio/final-fantasy-vii-main-theme-part.mp3" controls preload="auto">
Tu navegador no puede reproducir audios MP3
</audio>
</main>
<hr/>
<footer>
<ul>
<li><b>Correo electrónico:</b> <a href="mailto:[email protected]">[email protected]</a></li>
<li><b>Teléfono:</b> 01 8000 111 22 33</li>
<li><b>Facebook:</b> <a href="https://www.facebook.com/CloudStrifesPage/" target="_blank">https://www.facebook.com/CloudStrifesPage</a></li>
</ul>
</footer>
</body>
</html>