Crus4

logo

How to Add Search Bar in HTML

How to Add Search Bar in HTML Adding a search bar to your HTML page is very important. With the help of search bar, users can reach to any page of your website by simply searching for a specific keyword. To create a search bar on our HTML page we will use an HTML <input> […]

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 […]

How to Move Text HTML

How to Move Text HTML Sometimes, you may want to add some important text on your website, and you wish everyone would see it. If you add this important text like any other text, there are high chances that most of the people will ignore it. Although there are many ways by which you can […]

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 […]

How to Create a Form in HTML

How to Create a Form in HTML We mostly use HTML Forms to collect any type of data from the user. Like the text strings, passwords, number, images etc. To create a form in HTML, we have to use a <form> tag. Along with this <form> tag we have to use various other tags like […]

Create a Link in HTML

To create a link in HTML, we have to use an anchor tag. Along with this a tag we have to use the href attribute to specify….

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, […]

How to Add Radio Button in HTML

How to Add Radio Button in HTML In this article, we will learn almost everything about HTML Radio Button and also learn how you can Add Radio in HTML. What is HTML Radio Button The <input type=”radio”> element is used to create a radio button in HTML. “radio” is a form control that allows the […]