Exploring "freeCodeCamp"

angie_aaparedes

Angie Walls

Posted on October 28, 2020

Exploring "freeCodeCamp"

Photo by AltumCode on Unsplash

This time, I wanted to practice some HTML and someone recommended freeCodeCamp, it has interesting topics about Basic HTML for beginner and I learned three of them

Comments This is a very important topic to reference sections making notes without affecting output.

The HTML is <!----> and the used this way:

<!--This note is not seen in the output--><h1>Some title</h1>
Enter fullscreen mode Exit fullscreen mode

This is the link I used to learn these HTML elements
freeCodeCamp>Basic>Uncomment

Descriptive HTML tags The HTML elements that help your code to be more descriptive and at the same time they help to better sectioning are: nav, section, article, aside, h1..h6, header, footer, address, main
e.g. "main"

<main>
  <h1>Nice Title</h1>
  <p>Some pretty text ❤ </p>
<main/>
Enter fullscreen mode Exit fullscreen mode

This is the link I used to learn these HTML elements
freeCodeCamp>Basic>Elements

Add Images to your website
One of the HTML elements I studied to add images from URLs and from local folder is:

<img scr="URL" Alt="image's description"/>
Enter fullscreen mode Exit fullscreen mode

This is the link I used to learn these HTML elements
freeCodeCamp>Basic>Add Images

Any feedback is welcomed

💖 💪 🙅 🚩
angie_aaparedes
Angie Walls

Posted on October 28, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related