HTML - PÁGINA CURRÍCULO
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currículo</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/curril.css">
</head>
<body>
<header class="cabecalho">
<nav class="cabecalho__menu">
<a class="cabecalho__menu__links" href="index.html">Home</a>
<a class="cabecalho__menu__links" href="about.html">Sobre mim</a>
<a class="cabecalho__menu__links" href="curril.html">Currículo</a>
</nav>
</header>
<main class="resume">
<section class="resume__principal">
<h1 class="resume__titulo__I">Wellikc Sousa<strong class="titulo-destaque"> Leal</strong></h1> <!--sobre mim-->
<p class="resume___paragrafo__I">Olá, me chamo Wellikc tenho 17 anos e atualmente
<br>estou no último ano do ensino médio e aprendendo front-end. Estou desenvolvendo
<br>habilidades em HTML, CSS e JavaScript para contribuir em projetos inovadores e expandir meus conhecimentos.</p>
<h2 class="resume__titulo__I">Experi<strong class="titulo-destaque">ências</strong></h2> <!--experiencia-->
<p class="resume___paragrafo__I">Operador de Caixa - Conveniencia caiçara
<br>Datas De: 11/2022 - 02/2023<br>
<br>Técnico de Informática - Atendimento Domiciliar
<br>Formatação de computadores, Limpeza de computadores, Troca de peças e ect.</p>
<h2 class="resume__titulo__I">Educa<strong class="titulo-destaque">ção</strong></h2> <!--educaçao-->
<p class="resume___paragrafo__I">Ensino fundamental completo - Escola
<br>Matos Carvalho
<br>Cidade: Barreirinhas - MA<br>
<br>Alura - Cursos online de tecnologia 2023 | Cursando
<br>| Front-end </p>
</section>
<img class="foto__resume" src="assets/eu.png" width="26%" height="67%" alt="Foto de Wellikc Leal">
</main>
<footer class="rotape">
<p>Desenvolvido por Wellikc Leal</p>
</footer>
</body>
</html>
CSS - PÁGINA CURRÍCULO
* {
padding: 0px;
margin: 0px;
}
.resume {
padding: 5% 13%;
display: flex;
align-items: center;
justify-content: space-between;
}
.resume__principal {
width: 618px;
display: flex;
flex-direction: column;
gap: 40px;
}
.resume__titulo__I {
font-size: 32px;
font-family: 'Krona One', sans-serif;
font-weight: 600;
}
.resume___paragrafo__I {
font-size: 24px;
font-family: 'Montserrat', sans-serif;
line-height: 36px;
}
.foto__resume{
position: absolute;
right: 7%;
top: 32%;
border-radius: 23px;
box-sizing: border-box;
border: 10px solid purple;
border-left: 353px;
border-top: 466px;
}