-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
65 additions
and
1 deletion.
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 |
---|---|---|
@@ -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> |