All articles
From the archiveEducation

Learn to Code: Episode 006 – HTML Tags – Intro to HTML Part 3

Mamerto1 min read
Learn to Code: Episode 006 – HTML Tags – Intro to HTML Part 3

Originally published June 1, 2020. This article is preserved from the earlier Codefrost site; references to products and tools reflect that time.

In the last episode, we talked about the most common HTML tags that we must be familiar with. This episode is the continuation where we will discuss more HTML tags using Visual Studio Code.

We’ll start with what is called “self-closing” tags. Named because it does not require a closing tag in order to use.

Here are the things we will discuss:

  • <br> – Line break
  • <hr> – Horizontal Rule
  • Using Visual Studio’s HTML snippet where we don’t need to type in the opening brace “<“ in order to type an HTML tag. We just need to type the HTML tag name directly like “br” (without quotes) then pressing the TAB key to complete
  • <ul> – Unordered list
  • <li> – List item
  • <ol> – Ordered list

Watch the accompanying video on YouTube

It’s getting more exciting isn’t it? In the next episode, we’ll discuss how to insert pictures and discuss the difference between relative and absolute source/URLs.