Build a Curriculum Outline - Step 6

Tell us what’s happening:

I don’t understand how to use

into paragraph element

Your code so far

<h1>Welcome to freeCodeCamp</h1>
<h2>Full Stack Curriculum</h2>

<!-- User Editable Region -->

<P>Learn the skills to become a full stack developer </P>into a Paragraph element

<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Curriculum Outline - Step 6

HTML tag names are case-insensitive, so these are treated the same:

<div></div>
<DIV></DIV>
<dIV></Div>

But the test case is only checking for lowercase tags. ¯\_(ツ)_/¯

You have added some extra text after the closing p tag. Try removing that.

Although it’s true that HTML is not case sensitive, it is also true that lower-case tags are the accepted convention and best practice, which is why they are introduced that way in the curriculum.