Be Brav3

FCC Challenge 3: Inform with the Paragraph Element

March 06, 2016

The third Free Code Camp Challenge asks that you add a p tag to the existing code:

[html]

Hello World

CatPhotoApp

[/html]

The finished code should look like this

[html]

Hello World

CatPhotoApp

Hello Paragraph

[/html]

p elements are the preferred element for normal-sized paragraph text on websites. P is short for “paragraph”.

You can create a p element like this:

I’m a p tag!

Create a p element below your h2 element, and give it the text “Hello Paragraph”.