Olá a todos, Me chamo João Pedro e sou iniciante no curso de Front-end ! Utilizando o projeto do figma , consegui ter uma base e fiz a minha versão será que poderiam avaliar e me dar algumas dicas de como melhorar ? Obrigado a todos. E tambem queria uma ajuda , pois não consegui fazer algumas coisas :
- Não consegui colocar a logo das redes sociais.
- Não consegui colocar o Background do mesmo estilo do projeto do Figma (Optei por um background todo preto).
- E tem a borda que fica atras da foto que tambem não consegui colocar.
HTML
<!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">
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<title>HTML E CSS</title>
</head>
<body>
<header>
<div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="">Projetos</a></li>
<li><a href="">Sobremim</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div>
<h1>Eleve seu negócio digital a outro nível <strong>com um Front-end de qualidade!</strong></h1>
<img class="Foto" src="minha-foto.jpg" alt="Foto do João">
<h4>Olá! Me chamo João Pedro, estudante da Alura e iniciante na carreira de desenvolverdor front end.</h4>
</div>
<div>
<h3> Acesse minhas Redes:</h3>
<nav id="redes">
<ul id="lista-de-redes">
<li id="git"><a href="https://github.com/Jpcnjp/Primeiro-projeto"><h5>GitHub</h5></a></li>
<li id="link"><a href="linkedin.com/in/joão-pedro-césario-994940237"><h5>Linkedin</h5></a></li>
<li id="instagram"><a href="https://www.instagram.com/jpe18/"><h5>Instagram</h5></a></li>
</ul>
</nav>
</div>
</main>
<footer>
<h4 class="rodape"> Desenvolvido por João ! </h4>
</footer>
</body>
</html>
CSS
body {
background : black;
font-family: 'Montserrat', sans-serif;
}
header {
position: absolute;
width: 593px;
height: 29px;
left: 355px;
top: 65px;
}
nav ul {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
padding: 0px;
}
nav li {
display: inline;
font-weight: 600;
line-height: 29px;
}
nav a {
color: #22D4FD;
text-decoration: none;
}
main {
color: white;
}
h1 {
width: 593px;
height: 168px;
font-weight: 400;
font-size: 35px;
line-height: 40px;
margin: 235px 355px auto;
}
strong {
color: #22D4FD;
}
.Foto {
float: right;
position: absolute;
height: 550px;
left: 1030px;
top: 210px;
}
h4 {
font-weight: 400;
font-size: 24px;
line-height: 36px;
margin-left: 355px;
width: 610px;
}
h3 {
font-weight: 400;
font-size: 24px;
line-height: 40px;
margin: 56px 490px;
width: 270px;
}
#lista-de-redes{
display: flex;
flex-direction: column;
position: absolute;
width: 200px;
height: 170px;
left: 530px;
top: 610px;
}
#git {
border : 2px solid #22D4FD;
padding: 0 65px;
border-radius: 5px;
}
#link {
border : 2px solid #22D4FD;
padding: 0 59px;
border-radius: 5px;
}
#instagram {
padding: 0 53px;
border : 2px solid #22D4FD;
border-radius: 5px;
}
footer {
background-color: #22D4FD;
position: absolute;
width: 1920px;
height: 88px;
top: 1063px;
}
.rodape {
color: #123F77;
padding: 25px;
position: absolute;
left: 500px;
}