-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbikers.html
35 lines (33 loc) · 1.29 KB
/
bikers.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Información de la Persona</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Juan Carlos Hernández Vaca</h1>
</header>
<section class="info">
<img src="jc.jpg" alt="Juan Carlos" class="foto">
<div class="details">
<p><strong>Edad:</strong> 57 años</p>
<p><strong>Tipo de Sangre:</strong>O+</p>
<p><strong>Condiciones médicas/Enfermedades crónicas:</strong>Hipertensión, problemas cardiovasculares.</p>
<p><strong>Alergias:</strong>Ninguna</p>
<p><strong>Peso:</strong>10000000 kilos.</p>
<p><strong>Fecha de nacimiento:</strong>15 de noviembre de 1967</p>
</div>
<div class="contacts">
<h2>Contactos de Emergencia</h2>
<ul>
<li><strong>Ana Laura Hernández</strong> - Hermana: <a href="tel:+34123456789">+34 123 456 789</a></li>
<li><strong>Luis Adrián Hernández</strong> - Hijo: <a href="tel:+34987654321">+34 987 654 321</a></li>
<li><strong>Richie</strong> - Amigo: <a href="tel:+34901234567">+34 901 234 567</a></li>
</ul>
</div>
</section>
</body>
</html>