Life is 10% what happens to you and 90% how you react to it -Charles R. Swindoll

Sunday 21 January 2018

CatPhotoApp (FreeCodeCamp Front-End Development Certification)3

No comments

Comment out HTML 

So this task is pretty simple in this all you have to do is comment out your  <h1>Hello World</h1>tags and <p>Hello Paragraph</p>tags
and leave the <h2>CatPhotoApp</h2> tag uncommented
Like this..

<!--
<h1>Hello World</h1>
-->
<h2>CatPhotoApp</h2>
<!--
<p>Hello Paragraph</p>
-->
Click on run tests or press Ctrl + enter.
Now moving on to the next task .

Fill in the Blank with Placeholder Text

It says that web developers usually use lorem ipsum text as place holder text. The 'lorem ipsum text'  is randomly scraped from a famous passage by Cicero of Ancient Rome.
But since we are making a CatPhotoApp lets use something called kitty ipsum text
Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
The task here is simple all you have to do is copy a few words from the paragraph above and paste & replace it between your 
<p>Hello Paragraph</p>
Like this

<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Kitty ipsum dolor</p>

Then click on run test(Ctrl+enter)
2 Tasks Completed!
That's it for now
Comment below to ask and questions related to this and I will be sure to answer it


Don't forget to like, tweet, share, subscribe!

No comments :