Something is wrong with my HTML code, how could I fix it?

Here is my code:

<p>Welcome to our WEBSITE! style="font-size: 55pt;"</p>

>Solution :

Your content needs to go between the p tags and inline styles go inside the opening p tag like:

<p styles go here>Content goes here</p>

So in your case:

<p style="font-size: 55pt;">Welcome to our WEBSITE!</p>

Leave a Reply