Be Brav3

FCC Challenge 5: Comment out HTML

March 06, 2016

In FCC Challenge 5, you’re asked to only comment out the h1 and p tags:

[html]<!–

Hello World

CatPhotoApp

Hello Paragraph

–>[/html]

The updated code should look like

[html]<!–

Hello World

–>

CatPhotoApp

Hello Paragraph

–>[/html]

Remember that in order to start a comment, you need to use [html]<!–[/html] and to end a comment, you need to use [html]–>[/html]

Here you’ll need to end the comment before your h2 element begins.

Comment out your h1 element and your p element, but leave your h2 element uncommented.