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

Saturday 6 January 2018

CatPhotoApp (FreeCodeCamp Front-End Development Certification)2

No comments

Inform with the Paragraph Element 

p elements are preferred elements for normal-size text used in website paragraph.
You can create a p element like <p>hello</p>
see it's simple now in this task all you have to do is go on the next line below your <h2></h2> tags
in the editor write 
<p>Hello Paragraph</p> that's it for this task. 
Click on run tests or press Ctrl + enter.
Now moving on to the next task ...

Uncomment HTML 

Commenting is way for you to leave comments related to your code or anything you like without actually affecting the code itself.
Cool right!?
Now in different programming/markup languages there different ways to comment, but more on that later for now let's talk about HTML
In HTML  you can start a comment by <!--
and end a comment by --> .
Now in this task your editor looks like this 
<!--
<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Hello Paragraph</p>
-->
All you have to do is remove the comment tags which will look like this

<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Hello Paragraph</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 :