23 Many selectors, many properties

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/en/courses/web-beginner-en-TlhFi/4/2?curriculum_id=50579fb998b470000202dc8b#

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
This is what it says
Oops, try again. Don’t forget to set your h1 font to Verdana!



index.html:
<!DOCTYPE html>
<html>
	<head>
            <link></link>
            <text type="text/css" rel="stylesheet" href="stylesheet.css" />
		<title>Result</title>
	</head>
	<body>
	<h1>
	Wild Astronauts
	</h1>
	<p>
	We play CSGO
	</p>
	</body>
</html>

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

your link to stylesheet is wrong, this is where you should focus on troubleshooting

It works now, thank you for helping :smiley: