<!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>My profile</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header></header>
<main>
<h1>Conheça um pouco sobre mim</h1>
<p>Olá, me chamo<strong> Júlia Brandão</strong>.</p>
<p>Sou graduanda em <span>Ciências Biológicas</span> e estou entrando agora no universo da <span>progamação</span>. Além disso, também sou <span>violinista</span> e <span>aprendiz técnico em mecânica</span>.</p>
<img src="eu.jpeg" alt="Foto da Júlia Brandão">
<a href="https://www.linkedin.com/in/júlia-brandão/">LinkedIn</a>
<a href="https://github.com/Ju-Stone">GitHub</a>
</main>
<footer></footer>
</body>
</html>
body {
background-color: #556B2F;
color: #FFFFFF;
}
h1 {
text-align: center;
font-family: "Times New Roman", Serif;
}
strong {
color: #ADFF2F;
}
span {
color: #ADFF2F;
text-decoration-line: underline;
text-decoration-style: double;
text-decoration-color: #ADFF2F;
}
img {
height: 300px;
width: 33%;
}