HTML
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portifolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header></header>
<main>
<h1>
Olá! Me chamo Eric e este é um projeto de <strong>HTML/CSS</strong> que desenvolvi
</h1>
<p>
Eu possuo um interesse grande para aprender <strong>desenvolvimento Front-End</strong>
e este é apenas o 1º projeto de muitos por vir.
</p>
<a href="https://linkedin.com/in/eric-akio-uchiyamada-337076289" class="botaoLinkedIn">LinkedIn</a>
<a href="https://github.com/EriAkiUchi/College" class="botaoGit">GitHub</a>
<img src="retrato.png" alt="Retrato de Eric Akio" class="imagem">
</main>
<footer>
Página desenvolvida por Eric Akio <br>
Referências: <a href="https://www.w3schools.com/css/default.asp">w3schools css</a>
</footer>
</body>
</html>
CSS
body {
background-color: rgb(48, 0, 83);
color: white;
font-family: 'Courier New', Courier, monospace;
}
h1 {
position: absolute;
left: 340px;
top: 20px;
}
p {
color: white;
position: absolute;
left: 400px;
top: 90px;
}
strong{
color:aqua;
}
footer{
color: gray;
position: absolute;
top: 930px;
}
.imagem {
max-width: 500px;
max-height: 450px;
width: auto;
height: auto;
position: absolute;
left: 1000px;
top: 200px;
}
.botaoGit {
display: inline-block;
text-decoration: none;
font-size: 30px;
padding: 10px 20px;
color: aqua;
background-color: rgb(100, 16, 160);
border: 1px rgb(100, 16, 160);
border-radius: 5px;
cursor: pointer;
position: absolute;
left: 650px;
top: 320px;
}
.botaoLinkedIn {
display: inline-block;
text-decoration: none;
font-size: 30px;
padding: 10px 20px;
color: aqua;
background-color: rgb(100, 16, 160);
border: 1px rgb(100, 16, 160);
border-radius: 5px;
cursor: pointer;
position: absolute;
left: 650px;
top: 430px;
}
.botaoGit:hover {
background-color: rgb(135, 63, 186);
font-weight: bold;
}
.botaoLinkedIn:hover {
background-color: rgb(135, 63, 186);
font-weight: bold;
}