HTML:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eleazar - Portfólio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Eleazar</h1>
<nav>
<ul>
<li><a href="https://www.instagram.com/eleazarlima._" target="_blank">Instagram</a></li>
<li><a href="https://github.com/Ele703/Portifolio-HTML-e-CSS" target="_blank">GitHub</a></li>
</ul>
</nav>
</header>
<section class="sobre">
<h2>Sobre o Projeto</h2>
<p>Este é um portfólio criado com HTML e CSS para apresentar o projeto Eleazar.</p>
</section>
<footer>
<p>© 2024 Eleazar. Todos os direitos reservados.</p>
</footer>
</body>
</html>
CSS:
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #f4f4f4;
color: #333;
text-align: center;
}
header {
background-color: #333;
color: white;
padding: 20px;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
.sobre {
margin: 40px;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
footer {
margin-top: 20px;
padding: 10px;
background: #333;
color: white;
}
Meu computador travou e tive que tentar fazer pelo celular kkk.