Questão 1
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portifólio</title>
<link rel="stylesheet" href="ex001.css">
</head>
<body>
<header></header>
<main>
<h1>
Eleve seu negócio digital a outro nível <strong>com um Front-end de qualidade!</strong>
</h1>
<p>Olá! Sou Telma Reis, desenvolvedora Front-end com especialidade em React, HTML e CSS. Ajudo pequenos negócios e designers a colocarem em prática boas ideias. Vamos conversar?</p>
</main>
</body>
</html>
body {
background-color: #3F51B5; /* Cor principal para o background */
color: #FF4081; /* Cor secundária 1 para o texto do body */
}
h1 {
color: #4CAF50; /* Cor secundária 2 para o texto dos títulos */
}
p {
color: #FF4081; /* Cor secundária 1 para o texto dos parágrafos */
}
Questão 2
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lorem Ipsum</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam nec fermentum nisi. Aenean pellentesque quam eu dui mollis tempor. Nullam pretium maximus neque, in ultrices purus ullamcorper non.</p>
</body>
</html>
body {
background-color: black;
color: white
}
Questão 3
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lorem Ipsum</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam nec fermentum nisi. Aenean pellentesque quam eu dui mollis tempor. Nullam pretium maximus neque, in ultrices purus ullamcorper non.</p>
</body>
</html>
body {
background-color: #FF5733;
color: #00FF00;
}