HTML
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Desafio 1</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>Quem sou eu?</header>
<h1>Olá, meu nome é Kelson e eu estou aprendendo o CSS</h1>
<h3>Programo a pouco tempo, mas sempre gostei de computadores e internet. <br>
E a pouco tempo conheci a porgramação e me apaixonei de cara.</h3>
<img src="css.jpg" alt="foto css">
<br>
<br>
<footer>Para contato escreva o email aqui abaixo</footer>
<label>Escreva o E-mail aqui</label> <input type="text"> <button>enviar</button>
<h4>Se quiser dar uma olhadinha nos meus projetos.</h4>
<a href="https://github.com/kelsu73">GitHub</a>
</html>
CSS
pesquisei bastante coisa do css, para poder melhorar e fazer mais que o pedido principal da atividade
body{
background-color:rgb(17, 17, 17);
color: rgb(255, 255, 255);
border-style: hidden;
h1 {
border-style: inset;
border-color: rgb(0, 102, 255);
color:rgb(0, 153, 255)}
h3{ color:rgb(0, 153, 255)}
a{ text-decoration: none;
color: rgb(0, 153, 255)
}
button {
background-color: rgb(0, 153, 255);
border-radius: 90%;
border-width: 1cap;
padding: 1%;
height: 4%;
}
}