#10 HTML Basics II : Oops, try again. It looks like your second <li> is 16px instead of 12px

<li style="font size: 16px; font-family: Arial">This item is big Arial.</li>
    <li style="font size: 12px; font-family: Verdana">This item is medium Verdana.</li>
    <li style="font size: 10px; font-family: Impact">This item is small Impact.</li>

I have tried reset and tried Ctrl-0 and nothing changes. I have also changed the px values around.
The screen is displaying the correct info. I’m at a loss.

Can anyone help please?

Solved the problem. I added a dash between font-size. It worked.

Thanks,
Rhonda

1 Like

this problem is not solved

Are you experiencing the same problem @javamaster58811?

yes, this problem is not solved

@javamaster58811 In that case, please create a new topic with a link to the exercise you’re on, the error message you’re getting, and your code (see how to format it here). Someone will help you over there, but it’s best to avoid cluttering up other people’s topics :slight_smile:
Thanks!

Hello’ Can anyone take a look please ? Im having the same problem

<head>
	<title>Loving the font changes</title>
</head>
<body>
	<h1 style="font-family: Arial">Big title</h1>
	 <ol>
	 	<li><p style="font-size: 16px; font-family: Arial;">This item is big Arial.</li>
	 	<li><p style="font-size: 12px; font-family: Verdana;">This item is medium Verdana.</li>
	 	<li><p style="font-size: 10px; font-family: Impact;">This item is small Impact.</li>
	 </ol>
</body>

</``html>`

@elpatron324 You aren’t closing your <p> tags.