Build a Curriculum Outline - Step 10

Tell us what’s happening:

Step 10
While HTML defines the structure and content of a webpage, CSS is used to add style — things like colors, fonts, spacing, and layout.

Below the h3 you just added, add another paragraph element with the text:

CSS is used to style a webpage

.......

Your code so far

<h1>Welcome to freeCodeCamp</h1>
<h2>Full Stack Curriculum</h2>
<p>Learn the skills to become a full stack developer</p>

<h3>Introduction to HTML</h3>
<p>HTML represents the content and structure of a webpage</p>

<!-- User Editable Region -->

<h3>Introduccion to CSS 
<p>CSS is used to style a webpage</p></h3>



<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

Build a Curriculum Outline - Step 10

hi, welcome to the forum!

It looks like you’re having a hard time adding a new paragraph element below the h3 element.
Here’s an example of an h3 element first:
<h3>This is a smaller header</h3>

When we want to add something below it, we make a blank line underneath and add the new code there. Like so:

<h3>This is a smaller header</h3>
<p>I'm below the h3</p>

Hope this helps.

For next time though, please be sure to include a question with your post. (something that describes the problem with your own words would be much appreciated so we know what you’re thinking and can help you address any misunderstandings you have)