HTML Crash Course for Beginners -3
--
Welcome to part-3 of the series. You can find part-2 here. We will continue learning about more HTML tags. But before that let’s learn about Tag Attributes.
Tag Attributes
All tags have attributes, infact when we learn CSS we will add either class or id attribute to a tag. They provide additional information about a tag and are required in some tags like the anchor tag, we understood in the previous part. The anchor tag have a required attribute href and an additional attribute target.
List Tag
Now, we will learn about list tags. They are used to display list on the web-page. We have two types of list unordered lists(<ul>
) and ordered lists(<ol>
). As the name suggest ordered list is a numbered list and unordered list is not.
Each list also have list items(<li>
), which shows each item in a list. Below is the example of both type of list.
You can read the rest of the blog from my site. The link for the same is below.
There are lots more tags to complete in form, which you can find in the final part here.