Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Subo mi GitHub profile #811

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions github-profiles/VeronicaCapobianco-6597/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Veronica Capobianco
### _FrontEnd Developer from Argentina_


## Sobre mi

- 🌱 I’m currently learning **Javascript, React and Nodejs**
- 📫 How to reach me [email protected]
- ✨Connect with me: [LinkedIn](/https://linkedin.com/in/vscapobianco)


## Proyectos

- 👨‍💻 All of my projects are available at [https://portfolio-workertech.vercel.app/]


## Terminal

Aprendimos comandos de la terminal

| Comando | Función |
| ------ | ------ |
| ls | Lista los archivos del directorio |
| pwd | Muestra en que carpeta estoy |
| mkdir | Crea un nuevo directorio |
| cd | Cambia el directorio |
| rm | Elimina archivos o directorios |
| clear | Limpia todo lo escrito en la ventana de la terminal |



33 changes: 33 additions & 0 deletions github-profiles/VeronicaCapobianco-6597/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./main.css">
<title>Veronica Capobianco</title>
</head>

<body>
<h1>Veronica Capobianco</h1>
<h2>FrontEnd Developer / Buenos Aires - Argentina</h2>

<div>
<h3>Sobre mi</h3>
<ul>
<li>🌱 Actualmente me estoy capacitando en <strong>Javascript, React and Nodejs</strong></li>
<li>📫 Escribime a <a href="mailto:[email protected]">[email protected]</a></li>
<li>✨Conecta conmigo aquí: <a
href="/https://linkedin.com/in/vscapobianco">linkedin.com/in/vscapobianco</a></li>
</ul>
</div>
<div>
<h3>Proyectos</h3>
<p>👨‍💻 Todos mis trabajos estan disponibles en mi
<a href="https://portfolio-workertech.vercel.app/">Portfolio</a>
</p>
</div>

</body>

</html>
34 changes: 34 additions & 0 deletions github-profiles/VeronicaCapobianco-6597/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
body {
max-width: 600px;
margin: 0 auto;
background: #313132;
color: #cebebe;
font-family: monospace;
font-size: 14px;
}

h1{
font-size: 48px;
color: chartreuse;
}

h2 {
font-style: italic;
}

h3{
color: yellowgreen;
}

div{
padding: 20px 0;
}

a{
text-decoration: none;
color: yellowgreen;
}

p {
line-height: 1.5;
}
Loading