Getting started with HTML EP3
OLUWAPELUMI
Posted on April 24, 2024
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>
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!
💖 💪 🙅 🚩
OLUWAPELUMI
Posted on April 24, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
python Mastering Python’s __name__ and __main__: Understanding Script Execution and Module Imports
November 1, 2024