Hello good day!
There’s nothing wrong with my code, I’m quite sure of that! And even then, an error message appears with the following message: Oops, try again. Did you remember to leave the text-decoration of the link value none?
What should I do ? I’ve tested it on other browsers and it’s the same thing; Giving the same error!
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Resultado</title>
</head>
<body>
<h1>Eu quero</h1>
<p>Eu quero isso</p>
<img src="http://images.uncyc.org/pt/thumb/4/42/Digimon1.jpg/300px-Digimon1.jpg"/>
<a href="https://www.google.com">Google</a>
</body>
</html>
h1 {
font-family: Verdana, sans-serif;
color: #576d94;
}
p {
font-size: 18px;
color: #4a4943;
font-family: Garamond, serif;
}
img {
width: 300px;
height: 100px;
border: 1px solid #4682b4;
}
a {
text-decoration: none;
color: #cc0000;
}