HTML Basics ll 11/16 I don't get the Error: Oops, try again. Did you remember to set the font-family to Arial?

11/16 HTML Basics ll

<In what way does your code behave incorrectly? Include ALL error messages.>
ERROR: Oops, try again. Did you remember to set the font-family to Arial?
I don’t get this, I put the exact code that they instructed



<!DOCTYPE html>
<html>
	<head>
		<title>Putting it all together</title>
	</head>
	<body>
		<p style = "font-size: 20px; color: blue; font-family Arial">A truly spectacular paragraph!</p>
		    
	</body>
</html>

is a syntax error
your code is:
font-family Arial
must be change to this:
font-family:Arial;

2 Likes

I did the font-size part but it did not show the right size.

HI you should create new post with your code…