Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ssofiasandoval committed Jun 27, 2024
1 parent 4efa761 commit b229853
Show file tree
Hide file tree
Showing 4 changed files with 159 additions and 0 deletions.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions bitacoras/ssofiasandoval/encargo-05/aportafolio/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sofía Sandoval Labbé - Portafolio</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="sidebar">
<h1>Sofía Sandoval Labbé</h1>
<ul>
<li><a href="#acerca-de-mi">Acerca de mí</a></li>
<li><a href="#portafolio">Portafolio</a></li>
<li><a href="#hablemos">Hablemos</a></li>
</ul>
<a href="CV_ssofia.pdf" target="_blank" class="cv-btn">Descargar CV</a>
</div>
<div class="content">
<section id="acerca-de-mi">
<h2>Acerca de mí</h2>
<p>Soy Sofía Sandoval Labbé, una apasionada estudiante de diseño interesada en el mundo digital y especializada en UX/UI. Mi objetivo es crear experiencias de usuario intuitivas y atractivas.</p>
</section>
<section id="portafolio">
<h2>Portafolio</h2>
<div class="carousel">
<div class="carousel-container">
<div class="carousel-item">
<img src="imagen1.jpg" alt="Proyecto 1">
</div>
<div class="carousel-item">
<img src="imagen2.jpg" alt="Proyecto 2">
</div>
<div class="carousel-item">
<img src="imagen3.jpg" alt="Proyecto 3">
</div>
</div>
</div>
</section>
<section id="hablemos">
<h2>Hablemos</h2>
<p>¡Estoy siempre abierta a nuevas oportunidades y colaboraciones! No dudes en ponerte en contacto conmigo.</p>
<div class="contact-icons">
<a href="https://www.instagram.com/ssofia.sandoval/" target="_blank"><img src="https://img.icons8.com/ios-filled/50/000000/instagram-new.png" alt="Instagram"></a>
<a href="https://www.linkedin.com/in/sofía-sandoval-labbé-531b21240/" target="_blank"><img src="https://img.icons8.com/ios-filled/50/000000/linkedin.png" alt="LinkedIn"></a>
</div>
</section>
</div>
</div>
<footer>
<p>&copy; 2024 Sofía Sandoval Labbé</p>
</footer>
</body>
</html>

101 changes: 101 additions & 0 deletions bitacoras/ssofiasandoval/encargo-05/aportafolio/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
cursor: url('https://img.icons8.com/ios/50/000000/cursor.png'), auto;
}
.container {
display: flex;
height: 100vh;
}
.sidebar {
width: 250px;
background-color: #fff;
padding: 20px;
border-right: 1px solid #ddd;
}
.sidebar h1 {
margin: 0 0 20px;
font-size: 2em;
font-weight: 600;
color: #333;
}
.sidebar ul {
list-style: none;
padding: 0;
margin: 0;
}
.sidebar ul li {
margin-bottom: 10px;
}
.sidebar ul li a {
text-decoration: none;
color: #333;
font-size: 1.1em;
font-weight: 400;
transition: color 0.3s;
}
.sidebar ul li a:hover {
color: #8e44ad;
}
.content {
flex: 1;
padding: 20px;
}
h2 {
font-size: 2em;
font-weight: 600;
color: #333;
margin-bottom: 20px;
}
p {
font-size: 1.1em;
line-height: 1.6;
color: #555;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
.cv-btn {
display: inline-block;
background-color: #333;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
transition: background-color 0.3s;
}
.cv-btn:hover {
background-color: #8e44ad;
}
.social-icons {
margin-top: 20px;
}
.social-icons a {
text-decoration: none;
color: #333;
font-size: 1.5em;
margin-right: 10px;
transition: color 0.3s;
}
.social-icons a:hover {
color: #8e44ad;
}
.contact-icons {
margin-top: 20px;
}
.contact-icons a {
margin: 0 15px;
text-decoration: none;
}
.contact-icons img {
width: 40px;
height: 40px;
}

0 comments on commit b229853

Please sign in to comment.