It’s reminding me to include a type=“text/css” in your tag?
<!DOCTYPE html>
<html>
<head>
<link type="text/ccs" rel="stylesheet" href="stylesheet.css"/>
<title>Result</title>
</head>
<body>
<h1>Change me to Verdana.</h1>
<h3>Change me to Courier.</h3>
<p>Make me purple!</p>
</body>
</html>
h1 {
font-family: Verdana;
}
h3 {
font-family: Courier;
}
p {
color: purple;
} /* Purple is the color*/