Font Size error? HTML chapter8

First font size change

Some text for you to make tiny!

Some text for you to make normal size!

Some text for you to make super big!

It’s continuously telling me that there is a nesting error in my code! What’s wrong?

</head>
<body>
	<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>

The moment you have a paragraph:

<p>i am a paragraph</p>

you can add the style attribute to a opening tag without creating a additional opening tag:

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

Attributes can be added to opening tags

 Hi there !

Thanks for your help.

 Mesrop