index.html
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inicio</title>
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<header>
<h1>Mi Portafolio</h1>
<nav>
<a href="index.html">Inicio</a>
<a href="about.html">Sobre mí</a>
</nav>
</header>
<main>
<h1>Bienvenido a mi sitio</h1>
<p>Este es un sitio de ejemplo para un desafío de desarrollo web.</p>
</main>
<footer>
<p>Desarrollado por Marco Rangel</p>
</footer>
</body>
</html>
about.html
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sobre mí</title>
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<header>
<h1>Sobre mí</h1>
<nav>
<a href="index.html">Inicio</a>
<a href="about.html">Sobre mí</a>
</nav>
</header>
<main>
<h1>Sobre mí</h1>
<p>Soy Marco Rangel, desarrollador web con experiencia en frontend y backend.</p>
</main>
<footer>
<p>Desarrollado por Marco Rangel</p>
</footer>
</body>
</html>
styles.css
/* Estilo del encabezado */
header {
background-color: #000000;
padding: 20px;
text-align: center;
}
header h1 {
color: #22D4FD;
font-size: 2.5em;
margin: 0;
font-family: 'Krona One', sans-serif;
}
/* Estilo de navegación */
nav a {
color: #F6F6F6;
text-decoration: none;
margin: 0 15px;
font-size: 1.2em;
}
nav a:hover {
color: #22D4FD;
}
/* Ajuste del espaciado del contenido */
main {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
/* Estilo del pie de página */
footer {
background-color: #000000;
color: #F6F6F6;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}