<Below this line, add a link to the EXACT exercise that you are stuck at.>
HTML Basics II
8:Font size
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
Oops, try again. 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>
Some text for you to make normal size!
<p style="font-size: 20px;"></p>
<p>
Some text for you to make super big!
<p style="font-size: 40px;"></p>
</body>
</html>