nav Tag HTML
nav Tag HTML HTML nav tag (<nav>) is used to define a section of an html document that includes navigation links. It represents a block of navigation links that typically appear as a menu of a website. Remember that it’s not necessary to add all the links of a document inside the <nav> tag. Here […]
Difference Between Ordered List and Unordered List
Difference Between Ordered List and Unordered List There are mainly two types of HTML Lists: Ordered List and Unordered List. But the question is, what is the difference between ordered list and an unordered list. Today we will learn all the differences between these two types of lists. S.No. Ordered List Unordered List 1. Ordered […]
HTML figure and figcaption
HTML figure and figcaption The HTML <figure> and <figcaption> tags are used to group an image, video, or other types of media content along with its caption or description. The HTML <figure> element is used to mark up any media file in a document and <figcaption> element is used to define the caption for that […]
What is input tag in HTML
What is input tag in HTML The HTML input tag is used to collect the user’s data. That is why it is most important form element (because in the form we are collecting user’s input). The HTML <input> tag is used to create various types of form controls such as text fields, checkboxes, radio buttons, […]