I don't know what the problem is

<!DOCTYPE html>
<html>
	<head>
		<title>Loving the font changes</title>
	</head>
	<body>
		<h1 style="font-family: Arial">Big title</h1>
		 <ol>
		 	<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>
		 </ol>
	</body>
</html>

It says:
Oops, try again. Did you remember to change the first <li> to the font Arial?

You shouldn’t put quotes around each value and attribute rather a pair around all like so:
*semi colon to separate

<li style="font-size: 12px; font-family: Verdana">This item is medium Verdana.</li>
		 	
1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.