Skip to content

Commit

Permalink
Merge branch 'undefined-academy:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulinoAlcantara authored Jun 7, 2024
2 parents 441e6b2 + 722bf0a commit a24d154
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 0 deletions.
23 changes: 23 additions & 0 deletions github-profiles/jrv_dev/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# **¡Hola a todos! 👋**

***¡Bienvenidos a mi perfil de GitHub!***

## **Soy *Johan Ramirez Vargas***
Un apasionado por las tecnologías y el desarrollo de software. Actualmente tengo *20 años*, vivo en la **Republica Dominicana** y estoy cursando el segundo año de **Ingeniería en Sistemas** en la [Universidad Católica del Cibao](https://www.ucateci.edu.do/).

### **Sobre Mí**
Me considero una persona bastante **adaptable** a las diferentes situaciones que se me presentan. En mi tiempo libre, disfruto de *jugar baloncesto y videojuegos y ver series animadas y leer comics* y siempre estoy emocionado por **aprender algo nuevo**.

🔭 **Explora mis proyectos en GitHub:** [jrv-dev](https://github.com/jrv-dev)

## **Habilidades por Aprender**
- ![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?style=for-the-badge&logo=html5&logoColor=white)
- ![CSS3](https://img.shields.io/badge/css3-%231572B6.svg?style=for-the-badge&logo=css3&logoColor=white)
- ![JavaScript](https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E)
- ![Git](https://img.shields.io/badge/git-%23F05033.svg?style=for-the-badge&logo=git&logoColor=white)
- ![GitHub](https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white)

## **Aprendizaje Actual**
Estoy enfocado en aprender **desarrollo web full stack con JavaScript**. Actualmente estoy explorando diversos recursos en línea, practicando en proyectos prácticos. Principalmente estoy siguiendo un [bootcamp de js de Guillermo Rodaz](https://undefined.academy/).

¡No dudes en conectarte conmigo! Estoy emocionado por aprender, colaborar y crecer en la comunidad de desarrollo de software.
62 changes: 62 additions & 0 deletions github-profiles/jrv_dev/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Perfil de github</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Johan Ramirez Vargas</h1>

<h2>Estudiante de ing en sistemas</h2>

<p>Soy un estudiante de <b>2do año </b>estudio en la universidad <b>UCATECI</b>, en la <em>Republica Dominicana</em>.</p>

<p>Actualmente me encuentro estudiando <b>programacion web "full-stack con js"</b>, en el bootcamp de <a href="https://undefined.academy/" target="_blank">Guillermo Rodaz</a></p>

<h3>Comandos</h3>

<p>5 comandos aprendidos:</p>
<table>
<tr>
<th>Comando</th>
<th>Uso</th>
</tr>
<tr>
<th>ls</th>
<td>Listar directorios</td>
</tr>
<tr>
<th>touch</th>
<td>Crear archivo</td>
</tr>
<tr>
<th>mkdir</th>
<td>Crear directorio</td>
</tr>
<tr>
<th>mv</th>
<td>Mover directorios</td>
</tr>
<tr>
<th>cd</th>
<td>Moverse entre directorios</td>
</tr>
</table>
<p>2 comandos alias utiles:</p>
<table>
<tr>
<th>Comando</th>
<th>Uso</th>
</tr>
<tr>
<th>rm</th>
<td>Elimar directorios forzados</td>
</tr>
<tr>
<th>cls</th>
<td>Limpiar consola</td>
</tr>
</table>
</body>
</html>
49 changes: 49 additions & 0 deletions github-profiles/jrv_dev/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
body {
font-family: Arial, Helvetica, sans-serif;
background-color: azure;
margin: 0 auto;
padding: 15px;
}

h1,
h2,
h3 {
text-align: center;
padding: 10px;
}

h1 {
font-size: 45px
}

h2 {
font-size: 32px;
}


h3 {
font-size: 30px
}

p {
text-align: center;
font-size: 18px;
}

a {
color: purple;
font-weight: bold;
}

table {

margin: 0 auto;
border: 1px solid black;

}

th,
td {
background-color: aqua;
border: 1px solid black;
}

0 comments on commit a24d154

Please sign in to comment.