Introduction HTML III basics h1 error

Can anyone tell me what im doing wrong? It says that i still need to make the H1 header in Arial. However, I already put it in what i thought was the right spot and it still isnt taking it.

<!DOCTYPE html>
<html>
	<head>
 
	    <title>Table Time</title>
	</head>
	<body>

	<h1>Tables Are Mega Sweet<p style="font-family:Arial"></h1>
		<img src="https://s3.amazonaws.com/codecademy-blog/assets/ninja_zpsa5dbe37a.jpg" />
	<a href="www.twentyonepilots.com/">
	    <img src="http://i.telegraph.co.uk/multimedia/archive/03597/POTD_chick_3597497k.jpg" />
	    </a>
	</body>
</html>

Here what you did was add a paragraph inside your h1 and set that to Arial

keep your h1 remove paragraph

<h1>Tables Are Mega Sweet</h1>
	

Grab your styling: style="font-family:Arial" and add it to your h1

<h1 style="font-family:Arial">Tables Are Mega Sweet</h1>
1 Like