Having difficulty with the font family exercise 10

hellos,
I keep getting this message about the code below:

Oops, try again. It looks like your second

  • 's font-size is 16px instead of 12px.
    <!DOCTYPE html>
    <html>
    	<head>
    		<title>Loving the font changes</title>
    	</head>
    	<body>
    		<h1 style="font-family: Arial">Big title</h1>
    		 <ol>
    		 	<li style="font-family: Arial;font-size:16 px">This item is big Arial.</li>
    		 	<li style="font-family: Verdana;font-size:12 px">This item is medium Verdana.</li>
    		 	<li style="font-family:Impact;font-size:10 px">This item is small Impact.</li>
    		 </ol>
    	</body>
    </html>
    
  • 16px (and all the other font-sizes) is one argument, there can’t be spaces between 16 and px

    1 Like