HTML TAGS
Total Tags - 142
Structural Tags
Text Formatting Tags
Form and Input Tags
Link and Navigation Tags
Multimedia Tags
Table Tags
Semantic and Structural Tags
Script and Programming Tags
Metadata Tags
Structural Tags
<html> - Root element of an HTML document.
<head> - Container for metadata and links to external resources.
<title> - Specifies the title of the document.
<body> - Defines the main content area.
Text Formatting Tags
<mark> - Highlighted text.
<p> - Paragraph.
<del> - Deleted text.
<blockquote> - Block quotation.
<ins> - Inserted text.
<div> - Generic container for grouping content.
<sup> - Superscript text.
<span> - Inline container for grouping text.
<sub> - Subscript text.
<a> - Hyperlink.
<br> - Line break.
<b> - Bold text.
<wbr> - Optional line break.
<i> - Italic text.
<code> - Inline code.
<strong> - Strong emphasis.
<pre> - Preformatted text.
<em> - Emphasis.
<kbd> - Keyboard input.
<u> - Underlined text.
<samp> - Sample output.
<small> - Smaller text.
<var> - Variable in programming.
Link and Navigation Tags
1. <a>- Defines a hyperlink to link to another page, section, or resource.
2. <nav>-Represents a section of navigation links, such as a menu or table of contents.
3. <ul>-Defines an unordered list (bulleted list).
4. <ol>-<li>-Defines a list item within <ul> or <ol>.
5. <dl>- Defines a description list.
6. <dt>- Defines a term or name in a description list.
7. <dd>- Defines a description or value for a term in a description list.
8. <menu>- Defines a list or menu of commands, often used for context menus or toolbars.
9. <menuitem>- Defines a command or option in a menu (deprecated in HTML5.2).
Form and Input Tags
1. <form> - Form container.
2. <input> - Input field.
3. <textarea> - Multi-line input field.
4. <button> - Button.
5. <select> - Drop-down menu.
6. <option> - Option in a drop-down menu.
7. <optgroup> - Group of options in a drop-down menu.
8. <label> - Label for input.
9. <fieldset> - Group of form elements.
10. <legend> - Caption for a <fieldset>.
11. <datalist> - List of predefined options for input.
12. <output> - Output of a calculation.
13. <progress> - Progress bar.
14. <meter> - Scalar measurement.
Table Tags
<table> - Defines a table.
<tr> - Table row.
<td> - Table cell.
<th> - Table header.
<thead> - Group of table headers.
<tbody> - Group of table body rows.
<tfoot> - Group of table footer rows.
<caption> - Table caption.
<col> - Defines attributes for a column.
<colgroup> - Groups columns in a table.
Multimedia Tags
1. <img>
2. <audio>
3. <video>
4. <source>
5. <track>
6. <picture>
7. <figure>
8. <figcaption>
9. <embed>
10. <iframe>
11. <canvas>
12. <object>
Semantic and Structural Tags
1. <abbr> - Abbreviation or acronym. <applet> - Obsolete Java applet.
2. <address> - Contact information. <acronym> - Replaced by <abbr>.
3. <cite> - Citation. <bgsound> - Background sound
4. <bdi> - Bidirectional isolation. (obsolete).
5. <bdo> - Bidirectional override. <big> - Large text (obsolete).
6. <time> - Date and time. <blink> - Blinking text (non-standard).
7. <data> - Machine-readable data.
8. <q> - Inline quotation.
9. <ruby> - Ruby annotation.
10. <rt> - Explanation in <ruby>.
11.<rp> - Parentheses around <rt>.
Metadata Tags
<meta> - Provides metadata about the document (e.g., charset, viewport).
<link> - Links external resources like stylesheets.
<style> - Contains CSS styles within the document.
<base> - Specifies the base URL for relative URLs.
<script> - Includes or references JavaScript.