FIFTY FIVE HTML TAGS
(1)html>: Defines the root of an HTML document.
(2)<head>: Contains metadata about the document.
(3)<title>: Defines the title of the document displayed in the browser's title bar.
(4)<body>: Represents the content of an HTML document.
(5)<h1> to <h6>: Headings of decreasing importance.
(6)<p>: Represents a paragraph of text.
(7)<a>: Creates a hyperlink to another webpage or resource.
(8)<(img>: Embeds an image in the document.
(9)<div>: Defines a division or section in the document.
(10)<span>: Inline container used to group and style text or other elements.
(11)<ul>: Defines an unordered (bulleted) list.
(12)<ol>: Defines an ordered (numbered) list.
(13)<li>: Represents a list item within <ul> or <ol>.
(14)<tablet>: Defines a table.
(15)?<tr>: Defines a table row.
(16)<td>: Defines a table cell.
(17)<th>: Defines a table header cell.
(18)<caption>: Provides a title or caption for a table.
(19)<form>: Creates an interactive form for user input.
(20)<input>: Represents an input control within a form.
(21)<button>: Defines a clickable button.
(22)<label>: Associates a label with a form control.
(23)<textarea>: Defines a multi-line text input control.
(24)<select>: Creates a drop-down list.
(25)<option>: Defines an option in a <select> element.
(26)<fieldset>: Groups related form elements together.
(27)<legend>: Provides a caption for a <fieldset>.
(28)<header>: Represents the introductory content of a section or webpage.
(29)<nav>: Defines navigation links.
(30)<article>: Represents a self-contained composition.
(31)<section>: Defines a section within a document.
(32)<aside>: Defines content aside from the main content.
(33)<footer>: Represents the footer of a document or section.
(34)<strong>: Renders text in a strong emphasis.
(35)<em>: Renders text in emphasized emphasis.
(36)<blockquote>: Defines a section that is quoted from another source.
(37)<code>: Represents a piece of computer code.
(38)<pre>: Defines preformatted text.
(39)<hr>: Represents a thematic break between paragraphs.
(40)<iframe>: Embeds another document within the current one.
(41)<audio>: Embeds audio content.
(42)<video>: Embeds video content.
(43)<source>: Specifies multiple media resources for <video> and <audio>.
(44)<canvas>: Used to draw graphics, animations, or other visual images.
(45)<avg>: Defines vector-based graphics in XML format.
(46)<b>: Renders text in a bold font.
(47)<i>: Renders text in an italic font.
(48)<u>: Renders text with an underline.
(49)<s>: Renders text with a strikethrough.
(50)<sup>: Renders text in superscript.
(51)<sub>: Renders text in subscript.
(52)<abbr>: Defines an abbreviation or acronym.
(53)<cite>: Specifies a citation or reference.
(54)<q>: Defines a short quotation.
(55)<del>: Indicates deleted text
Comments
Post a Comment