-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMi-Biografia.html
123 lines (111 loc) · 3.42 KB
/
Mi-Biografia.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="biografia.css" />
</head>
<body>
<header>
<h1>Ernesto Crespo</h1>
</header>
<img src="/Images/Ernesto-Selfie.jpeg" alt="Ernesto Selfie" />
<div class="main-info--container">
<h2>Mi nombre es Ernesto Crespo</h2>
<p>
Estudiante de Ingenieria de Software con experiencia en el desarrollo
web, actualmente trabajo con HTML, CSS, JAvaScript, React, Tailwind CSS
y estoy aprendiendo TypeScript!
</p>
<br />
<p>
Entre mis pasatiempos favoritos esta jugar al futbol con mis amigos,
entrenar en el gimnasio y aprender cosas nuevas sobre programacion.
</p>
<br />
<p class="favweb-info">
Mi Sitio Web Favorito es: <a href="https://www.youtube.com/">Youtube</a>
</p>
</div>
<div class="libros-section-container">
<h2>Mis Libros Favoritos</h2>
<ol>
<li>Atomic Habits</li>
<li>The Power of Positive Thinking</li>
<li>The Magic of Thinking Big</li>
<li>Think and Grow Rich</li>
<li>12 Rules for Life</li>
</ol>
</div>
<div class="hobbies-section-container">
<h2>Mis Pasatiempos</h2>
<ul>
<li>Crear aplicaciones web</li>
<li>Cocinar y comer</li>
<li>Entrenar con mi equipo de Futbol</li>
</ul>
</div>
<div class="cualidades-section-container">
<h2>Mis Cualidades</h2>
<h3>Creativo</h3>
<p>Siempre busco soluciones nuevas a los problemas</p>
<h3>Organizado</h3>
<p>Tengo una agenda donde organizo las cosas que hare cada dia</p>
<h3>Divertido</h3>
<p>
Es garantizado pasar un buen rato conversando despues de una buena
semana de trabajo
</p>
<h3>Trabajador</h3>
<p>Me gusta trabajar en equipo y ayudar a mis compañeros</p>
<h3>Responsable</h3>
<p>
Siempre cumplo con mis tareas y responsabilidades gracias a la
organizacion que llevo
</p>
</div>
<div class="table-section-container">
<h2>Tabla de Mis Canciones Favoritas</h2>
<table>
<thead>
<tr>
<th>Nombre de la Canción</th>
<th>Género</th>
<th>Cantante/Grupo</th>
<th>Álbum</th>
<th>Año</th>
</tr>
</thead>
<tbody>
<tr>
<td>Kiss Me</td>
<td>Pop</td>
<td>Ed Sheeran</td>
<td>+</td>
<td>2011</td>
</tr>
<tr>
<td>When I was Your Man</td>
<td>Pop, Reggae</td>
<td>Bruno Mars</td>
<td>Unorthodox JukeBox</td>
<td>2012</td>
</tr>
<tr>
<td>Hold me Whie You Wait</td>
<td>Pop</td>
<td>Lewis Capaldi</td>
<td>Divinely Unispired to a Hellish Extent</td>
<td>2019</td>
</tr>
<!-- MUST ADD -->
<!-- • Agregue un video corto hasta 60 segundos ya sea presentándose (no video externo, sino
usando la etiqueta video) o de cualquier tema.
• Agregue un audio de su canción preferida.
• Agregue un video -->
</tbody>
</table>
</div>
</body>
</html>