Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ibcaos authored Oct 4, 2023
1 parent f320691 commit a047e33
Showing 1 changed file with 65 additions and 1 deletion.
66 changes: 65 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,65 @@
Hello Worldclear
<!DOCTYPE html>
<html lang="es">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi Portafolio - Diseño y Desarrollo Web</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
}

section {
padding: 2em;
max-width: 800px;
margin: 0 auto;
}

footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>

<body>
<header>
<h1>Mi Portafolio en Diseño y Desarrollo Web</h1>
<p>Especialista en UX/UI</p>
</header>

<section>
<h2>Sobre mí</h2>
<p>
Soy un apasionado del diseño y desarrollo web con más de X años de experiencia. He trabajado con una amplia variedad de clientes y proyectos, desde sitios web individuales hasta aplicaciones empresariales a gran escala. Mi enfoque principal es siempre en la experiencia del usuario, garantizando que cada sitio o aplicación no solo se vea bien, sino que también sea intuitivo y fácil de usar.
</p>

<h2>Proyectos destacados</h2>
<!-- Puedes agregar aquí tarjetas o links a tus proyectos -->

<h2>Contacto</h2>
<p>Si deseas trabajar conmigo o simplemente charlar sobre diseño y desarrollo, ¡me encantaría escuchar de ti! Envíame un correo a: <a href="mailto:[email protected]">[email protected]</a></p>
</section>

<footer>
Derechos Reservados © 2023
</footer>
</body>

</html>

0 comments on commit a047e33

Please sign in to comment.