Stuck here for weeks

I’ve tried fixing this numerous ways and I am frustrated being stuck here for 3 weeks now. Please help, none of these work, it says my font-family: Arial for H1 is incorrect.

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

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

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

if you have a heading:

<h1>i am a heading</h1>

you can add the style attribute to the opening tag without creating any additional opening tags;

<h1 style="">i am heading</h1>

attributes can be added to opening tags

1 Like