This issue has been solved. Thank you, @stetim94!
I am on 23. Pseudo Selectors, here’s the css:
.fancy {
font-family: cursive;
color: violet;
}
#serious {
font-family: Courier;
color: #8C8C8C;
}
body:nth-child(4) {
font-size: 26px;
}
I have tried
body :nth-child(3)
body:nth-child(3)
p :nth-child(3)
p:nth-child(3)
Yet, none of them work as intended.
The error returned is as shown in the title.
Any help would be of up most appreciation.
The HTML as requested
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Result</title>
</head>
<body>
<h3 class="fancy">
<p>Paragraph 1</p>
<p id="serious">Paragraph 2</p>
<p>Paragraph 3</p>
</h3>
</body>
</html>
Thanks
-Matt