<p> tags

I am having trouble with the following codes:

     <p> some text for you to make tiny</p>
     <p>some text for you to make normal size</p>
     <p>some text for you to make super big</p>

When I write it out with the attribute <p style="font-size: 10px"><p>some text for you to make tiny</p>
It give me an error saying “Did you change the number of <p> tags? You should still have 3 <p> tags.”
How do I fix this?

Your code isn’t visible, please see here to see how to make it visible.

When you have a paragraph, you can just add the style attribute to the opening tag without creating an additional opening tag:

<p> some text for you to make tiny</p>

adding the style attribute:

<p style=""> some text for you to make tiny</p>
1 Like