Be Brav3

FCC Challenge 4: Uncomment HTML

March 06, 2016

The fourth FCC Challenge asks you to uncomment the code:

[html]

<!–

Hello World

CatPhotoApp

Hello Paragraph

–> [/html]

The uncommented code should now look like

[html]

Hello World

CatPhotoApp

Hello Paragraph

[/html]

Commenting is a way that you can leave comments within your code without affecting the code itself.

Commenting is also a convenient way to make code inactive without having to delete it entirely.

You can start a comment with [html]<!–[/html] and end a comment with [html]–>[/html]

Uncomment your h1, h2 and p elements.