Stuck on 23

it is not going through what am i doing wrong ?

https://www.codecademy.com/en/courses/web-beginner-en-TlhFi/4/2?curriculum_id=50579fb998b470000202dc8b

Oops, try again. Don’t forget to set your h1 font to Verdana!


h1 {
    font-family:Verdana; 
    color:#576D94;
    } 
p {
   font-size: 18px;
   color: #4A4943;
     }


Your problem is in your html file, you have not linked to your CSS file correctly.

@bandit is right, very likely something is wrong with your <link>, which connects the stylesheet to the html file

Please copy paste your html code to the forum, use markup:

https://discuss.codecademy.com/t/how-do-i-format-code-in-my-posts/51139

So your code will show

1 Like
	<title><link rel="stylesheet" type="text/css" href="stylesheet.css" /></title>

its a given in the course

the <link> should never be inside the title

well done stetim94 its done :slight_smile: thanks buddy