Help cannot get passed font size!

I can’t get passed this! What’s the problem in my code?

	<p> <p style="font-size: 10px">Some text for you to make tiny!</p>
	<p>	<p style="font-size: 20px">Some text for you to make normal size!</p>
	<p> <p style="font-size: 40px"> Some text for you to make super big!</p>

Also the code doesn’t come up when I wrote this post!

Please make your code visible by using this format

```

   Replace this line with your code 

```

Style is an attribute you can add to a opening tag without creating an additional opening tag in the process, for example if you have a paragraph:

<p>i am a paragraph</p>

you can add the style attribute to the paragraph opening tag:

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

without creating an additional opening tag in the process

	<p style="font-size:10px">Some text for you to make tiny! </p>
	<p style="font-size:20px"> Some text for you to make normal size!</p>
	<p style="font-size:40px"> Some text for you to make super big!</p>

@lesun, i see code, but no question of error message. What is your question + error message? Please read the guidelines