-
Notifications
You must be signed in to change notification settings - Fork 640
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"Ejercicio clase 3 - Creación archivo index.html"
- Loading branch information
1 parent
f66faa1
commit 304a45a
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Mi página web</title> | ||
</head> | ||
<body> | ||
<!-- Esto es un comentario --> | ||
<h1>Israel Acuña U</h1> | ||
<h2>Software Developer</h2> | ||
<p> | ||
Actualmente me encuentro | ||
<strong>egresado como Ingeniero Informático</strong>, en busca de | ||
mipráctica profesional. | ||
</p> | ||
|
||
<p> | ||
Poseo conocimientos en | ||
<strong> | ||
Base de Datos, desde el Modelamiento, Consultas SQL y Programación en | ||
BD.</strong | ||
> | ||
En el área de desarrollo estoy ampliando mi aprendizaje de manera autónoma | ||
con cursos de React.js y Node.js. | ||
</p> | ||
|
||
<p> | ||
También cuento con conocimientos de <em>Gestión de Proyectos TI</em>, | ||
aplicando las distintas metodologías de trabajo que se puedan implementar | ||
en un proyecto informático. | ||
</p> | ||
|
||
<h2>Skills</h2> | ||
<h3>Lenguajes de Programación</h3> | ||
<ul> | ||
<li>PL SQL</li> | ||
<li>Java (POO)</li> | ||
<li>JavaScript</li> | ||
<li>React.js</li> | ||
<li>Node.js</li> | ||
<li>Python</li> | ||
</ul> | ||
|
||
<h2>Idiomas</h2> | ||
<ul> | ||
<li>Inglés Intermedio</li> | ||
<li>Portugués Avanzado</li> | ||
</ul> | ||
</body> | ||
</html> |