Can someone please show me how to nest the tags to change the font size?

It is saying that I am nesting the tags incorrectly, but I am doing exactly what I have been told to do. If someone could please do screenshots or talk me through it that would be great! Thank you.

Please post your code so we can have a look how you nested them, and then explain how you should nest them

How do you enter your code into the message?

Simply code the code, and paste it in the message, if it won’t show read this:

If you can’t get this to work, just leave it. I can do it for you, or you should have done it in the template provided for you when you made the topic

when you have a paragraph:

<p>i am a paragraph</p>

you can add the style attribute to the opening tag without creating an additional opening tag in the process:

<p style="">i am a paragraph</p>

see? You just add the style attribute to the opening tag. I find it surprising people do this right when dealing with src or href, but when the style attribute is used, people tend to add a additional opening tag, for no obvious reason

Okay thank you. I will try that and see if it works, thanks for helping.