-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathequipamento.html
executable file
·121 lines (100 loc) · 4.2 KB
/
equipamento.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
<!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>Equipamento</h2>
<table style="border-collapse: collapse" border="1">
<thead>
<tr>
<th>Materia</th>
<th>Nivel</th>
<th>Habilidad</th>
<th>Efecto</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bahamut</td>
<td>4/5</td>
<td>Daño x4</td>
<td></td>
</tr>
<tr>
<td>Knights of the Round</td>
<td>5/5</td>
<td>Daño x12</td>
<td></td>
</tr>
<tr>
<td>Exp Plus</td>
<td>2/5</td>
<td>Aumenta Exp.</td>
<td>Suerte +1</td>
</tr>
</tbody>
</table>
<h3>Agregar Equipamento</h3>
<form action="#">
<div>
<label for="materia"><b>Materia</b></label>
<select id="materia" name="materia" required>
<option value="ramuh">Ramuh</option>
<option value="ifrit">Ifrit</option>
<option value="shiva">Shiva</option>
<option value="titan">Titan</option>
<option value="odin">Odin</option>
</select>
</div>
<div>
<label><b>Nivel</b></label>
<label>
<input type="radio" name="nivel" value="1" /> 1
<input type="radio" name="nivel" value="2" /> 2
<input type="radio" name="nivel" value="3" /> 3
<input type="radio" name="nivel" value="4" /> 4
<input type="radio" name="nivel" value="5" /> 5
</label>
</div>
<div>
<label for="habilidad"><b>Habilidad</b></label>
<input type="text" id="habilidad" name="habilidad" required/>
</div>
<div>
<label for="efecto"><b>Efecto</b></label>
<input type="text" id="efecto" name="efecto"/>
</div>
<div>
<input type="submit" />
</div>
</form>
</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>