Be Brav3

FCC Challenge 7: Delete HTML Elements

March 06, 2016

Free Code Camp Challenge 7 require us to remove the h1 element:

[html]

Hello World

CatPhotoApp

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

[/html]

The new code should look like this:

[html]

CatPhotoApp

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

[/html]

Our phone doesn’t have much vertical space.

Let’s remove the unnecessary elements so we can start building our CatPhotoApp.

Delete your h1 element so we can simplify our view.