I’m trying to submit my code for this lesson. It’s saying “Did you remember to set your link’s text-decoration to none;?” I don’t think I’ve made any mistakes here, but it won’t let me move on until I submit this. Here’s what I have:
HTML
<!DOCTYPE html>
<html>
<head>
<title>Result</title>
<link type="text/css";rel="stylesheet";href="stylesheet.css"/>
</head>
<body>
<img src="http://bit.ly/NnVbxt";/>
<a href="https://www.google.com/">
</a>
<h1 style="font-family:Verdana;color:#576d94">
Hello!
</h1>
<p style="font-size:18px;color:#4A4943">
hello hello hello hello hello
</p>
</body>
</html>
And my CSS
h1{
font-family:Verdana, sans-serif;
color:#576d94;
}
p{
font-family:Garamond, serif;
font-size:18px;
color:#4a493;
}
img{
border:1px solid #4682b4;
height:100px;
width:300px;
}
a{
text-decoration:none;
color:#cc0000;
}
Any help would be very appreciated!