olá pessoal, sou novato em html, gostaria de saber o que tem de errado no comando logo abaixo no
stylesheet.css, existe um texto e eu quero que a palavra azul fique da cor azul.
index.html
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Fontes Estilizadas</title>
</head>
<body>
<p>Sou um parágrafo escrito em vermelho, mas uma das minhas palavras é <span>azul</span>!</p>
</body>
</html>
stylesheet.css
p {
color: red;
}
span {
/*Escreva seu código CSS aqui!*/
<span style="color:blue">azul> </span>
<-- erro aqui
}
<title>
</title>
}
obrigado.