Resultado:
HTML:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sobre Mim</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header class="cabecalho">
<nav class="cabecalho__menu">
<a class="cabecalho__menu__link" href="index.html">Home</a>
<a class="cabecalho__menu__link" href="about.html">Sobre Mim</a>
<a class="cabecalho__menu__link" href="curriculum.html">Currículo</a>
</nav>
</header>
<main>
</main>
<footer class="rodape">
<p>Desenvolvido por Maria Eduarda Barros</p>
</footer>
</body>
</html>
CSS:
.cabecalho {
padding: 2% 0% 0% 15%;
}
.cabecalho__menu {
display: flex;
gap: 80px;
}
.cabecalho__menu__link {
font-family: 'Montserrat', sans-serif;
font-size: 24px;
font-weight: 600;
color: #B70CF0;
text-decoration: none;
}
.rodape {
padding: 24px;
color: #000000;
background-color: #B70CF0;
text-align: center;
font-family: 'Montserrat', sans-serif;
font-size: 24px;
font-weight: 400;
}