DEV Community

Cover image for Getting started with HTML EP3
OLUWAPELUMI
OLUWAPELUMI

Posted on

Getting started with HTML EP3

In the comments section of our last episode, I received some great questions from our viewers. Let's address a few of them before we jump into creating our first HTML document.

Question 1: What's the difference between ul and ol?

  • ul stands for unordered list and is typically used for items that don't have a specific order or sequence.
  • ol stands for ordered list and is used when the items need to be displayed in a specific numerical or alphabetical order.

Question 2: Can you provide an example of how to create a link in HTML?
Sure! Here's an example:

<a href="https://www.example.com">Visit Example Website</a>
Enter fullscreen mode Exit fullscreen mode

This code creates a link that, when clicked, will take the user to the website specified in the href attribute.

Now that we've cleared up a few questions, let's dive into creating our first HTML document in the next episode. Stay tuned!

Top comments (0)