-
HTML <map> tag
HTML <map> tag is used with <area> tag to define a client-side image map. An image map is consist of an image with clickable areas, where you can click on the image, and it will open to new or the provided destination. The <map> tag can consist of more than one <area> elements which define…
-
HTML Main Tag
HTML <main> tag is used to represent the main content of the <body> tag. The <main> tag is written within <body> tag. It is used to accurately describe the primary content of a page. The content of the main tag is directly related to the central topic of the document. HTML <main> is a new tag…
-
HTML <link> tag
HTML <link> tag is used to specify the relationship between the current document and external source. The <link> tag is commonly used to link the external Stylesheet for the current document, but it can also use with link site icons. It is placed on the head section of the document. Example Following are some specifications…
-
HTML Lists
HTML Lists are used to specify lists of information. All lists may contain one or more list elements. There are three different types of HTML lists: Note: We can create a list inside another list, which will be termed as nested List. HTML Ordered List or Numbered List In the ordered HTML lists, all the…
-
HTML <legend> tag
HTML <legend> tag is used to insert a title or caption to its parent element such as <fieldset>. The <legend> element must be the first child of <fieldset > element. By using <legend> tag with <form> elements, it is easy to understand the purpose of grouped form elements. Syntax Following are some specifications about the…
-
HTML <label > Tag
The <label> tag is used to specify a label for an <input> element of a form. It adds a label to a form control such as text, email, password, textarea etc. It toggles the control when a user clicks on a text within the <label> element. Syntax: This tag can be used with the following two ways:…
-
HTML <kbd> tag
HTML <kbd> tag indicates the part of inline text which represents the user keyboard input, voice input, or any other text entry device input. The <kbd> text renders on the browser in default monospace font. It is used when a document needs to display the text which user should enter exactly from his keyboard. Syntax…
-
HTML <isindex> tag (Not supported in HTML5)
HTML <isindex> tag is used to provide a single line text input in a page to query a document. If user sent input to the server then server returns the list of page matching with the query. The <isindex> tag can be used anywhere in the document, but it would be preferable to use it…
-
HTML <ins> tag
HTML <ins> tag is used to represent the newly added text in an HTML document. It usually renders with an underline through the text, but it can be changed using CSS property. The <ins> tag is more useful when it is used with the <del> element as it represents the part of the text that…
-
HTML Input Tag
The HTML <input> tag is used to represent a form input control in HTML document. This form input control facilitate user to input data and communicate with a website or application. Let’s take an example of an HTML form with three input fields, two text fields and one button for submission. HTML Input Tag Example…
