html
<!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>Portifolio</title>
<link rel="stylesheet" href="desafio.css">
</head>
<body>
<header></header>
<main>
<h1 class="titulo-blog">Titulo do blog</h1>
<p class="texto-destaque">Noticias Urgentes</p>
<p class="urgente">Notícia Urgente 1</p>
<p class="urgente">Notícia Urgente 2</p>
<p class="urgente">Notícia Urgente 3</p>
</main>
<footer></footer>
</body>
</html>
css
* {
margin: 0;
padding: 0;
}
.titulo-blog {
color: grey;
}
.texto-destaque {
color: green;
}
.urgente {
color: red;
}