Noframes HTML

HTML <noframes> Tag The HTML <noframes> tag is not supported by HTML5. An alternative text can be added to be displayed in case the browser does not support the <frame> content, using the HTML <noframes> tag. It is placed within the HTML <frameset> tag along with the <frame> tag but is now deprecated. Syntax: <noframes>……..</noframes> … Read more

Nav HTML

HTML <nav> Tag To specify a section to contain navigation links, the HTML <nav> tag is used. The link is either within the current document or to another document. It does not contain all the links, but only the major block of navigation links. It was introduced in HTML5. Syntax: <nav>…..</nav> Example: <!DOCTYPE html> <html> … Read more

Meter HTML

HTML <meter> Tag To specify a scalar measurement with range or in more simple words, to measure data within a given range. the HTML <meter> tag is used. Also known as a gauge, this tag is used to display disk usage, voting population, etc. It was introduced in HTML5. Example 1: <!DOCTYPE html> <html> <body> … Read more

Meta HTML

HTML <meta> Tag To specify the document title, character set, page description, keywords, author, and other meta information, the HTML <meta> element is used. Example: <!DOCTYPE html> <html> <head> <meta charset=”UTF-8″> <meta name=”description” content=”HTML Examples”> <meta name=”keywords” content=”HTML,CSS,JavaScript”> <meta name=”author” content=”Codes Java”> </head> <body> <p>Hello World!!</p> </body> </html> Explanation: In the above example, we added … Read more

Menu HTML

HTML <menu> Tag To define a list or menu of commands the HTML <menu> tag is used. The user can perform or activate these commands. It thus creates a context menu as well as a list menu and can contain multiple <li> or <menuitem> elements within it. It is not recommended to use as it … Read more

Mark HTML

HTML <mark> Tag To highlight a part of the text, to mark it as important for reference or any other notation purpose, the HTML <mark> tag is used. It was introduced in HTML5. It usually displays the content with a yellow background. The background color can be changed using the CSS style property. Syntax: <mark>Content</mark> … Read more

Map HTML

HTML <map> Tag To specify a client-side image map, the HTML <map> tag is used. An image with clickable areas is what an image map is. A new or specified destination opens on clicking the image. The <area> elements within the <map> tag specify the coordinates and shape of the area. Thus a part of … Read more

Main HTML

HTML <main> Tag The main content of the <body> tag can be specified using the HTML <main> tag. Thus, the primary content of a page can be accurately described using the HTML <main> tag. It is placed within the HTML <body> tag. It was introduced in HTML5. It is recommended to use only one <main> … Read more

link HTML

HTML <link> Tag To link an external source to the current document, the HTML <link> tag is used. It can also be used with link site icons. It is placed within the <head> tag of the HTML document. Syntax: <link rel=”stylesheet” type=”text/css” href=””> Example: <!DOCTYPE html> <html> <head> <link rel=”stylesheet” type=”text/css” href=”style.css”> </head> <body> <h1>HELLO … Read more