<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-y2Yjd/1/2?curriculum_id=50579fb998b470000202dc8b
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
My code does the correct thing, but when I click Save & Submit Code, it gives me this error message: Slow down there, Speed Racer–it looks like your
tags are nested funny, like this: <p
or . Check the Hint if you need help!
<!DOCTYPE html>
<html>
<head>
<title>First font size change</title>
</head>
<body>
<p>
<p style="font-size: 10px">
Some text for you to make tiny!
</p>
<p>
<p style="font-size: 20px">
Some text for you to make normal size!
</p>
<p>
<p style="font-size: 40px">
Some text for you to make super big!
</p>
</body>
</html>