HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Exem 1 de Projeto</title>
</head>
<body>
<h1>Isso é um título</h1>
<p>Isso é um paragrafo. Escolha uma cor principal e duas cores secundárias para o seu site.</p>
</body>
</html>
CSS
body{
background-color: #E0D8AA;
max-width: 70%;
width: 100%;
margin: 0 auto;
font-family: Arial, Helvetica, sans-serif;
}
h1{
color: #DE3004;
padding-top: 10%;
padding-bottom: 4%;
}
p{
color: #294AC3;
font-size: 20px;
max-width: 60%;
}