I can’t seem to get past, it keeps saying I should make sure h1 is in Arial font, used this line of code but hasn’t worked for two days now <h1 type = font-family:"Arial">Tables Are Mega Sweet</h1>
.
This is how you add style to a code:
Take the original tag: <p> </p>
add in style=" "
before >
Example:
<p style="color: blue;"> my paragraph text </p>
You used type
you need to use style
, also your quotes are in the wrong place
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.