HTML Tags Alphabetically: Ultimate Guide

HTML Tags Alphabetically: Ultimate Guide

October 24, 2024·Tarık Korucuoğlu
Tarık Korucuoğlu

HTML (HyperText Markup Language) is the foundation of web development, used to structure content on the web. Every web page you interact with is built using HTML, and at the heart of this language are ***HTML tags*** . These tags define everything from the layout and design of a website to the interactive elements users engage with. To make your journey through HTML easier, we’ve compiled a comprehensive guide to HTML tags, ordered alphabetically. Whether you're a beginner or a seasoned developer, this guide will serve as a handy reference for understanding the function of each tag.

1. Introduction to HTML Tags

HTML tags are the basic building blocks of a webpage. They are enclosed in angle brackets (< >) and usually come in pairs: an opening tag (<tag>) and a closing tag (</tag>), with content placed between them. Some tags, known as ***self-closing tags*** , do not have closing counterparts. Tags are used to define different parts of a webpage, such as headings, paragraphs, links, images, forms, and more.

Each HTML tag serves a specific function, helping browsers interpret how to display the content on the page. Tags are often accompanied by ***attributes*** , which provide additional information about the elements they modify.


2. A-Z List of HTML Tags

Here’s a list of common HTML tags, ordered alphabetically, along with a brief description of their functions.

A

    - ***<a>*** : Defines a hyperlink, used to link to another page or location on the same page.
    • <abbr> : Represents an abbreviation or acronym. Browsers can display additional information about the abbreviation, usually through the title attribute.
    • <address> : Represents the contact information for the author or owner of a webpage.
    • <area> : Defines a clickable area within an image map, used with the <map> tag.
    • <article> : Defines independent content, like a blog post or news article.
    • <aside> : Represents content tangentially related to the main content, like a sidebar.
    • <audio> : Embeds sound content into a webpage, supporting multiple formats like MP3, WAV, and OGG.

    B

      - ***<b>*** : Boldens the text. It is often used for stylistic emphasis, though <strong> is preferred for denoting important text.
      • <base> : Specifies a base URL for all relative URLs in a document.
      • <bdi> : Isolates a portion of text that might be formatted in a different direction than its surrounding content.
      • <bdo> : Overrides the current text direction (left-to-right or right-to-left).
      • <blockquote> : Indicates a section quoted from another source, often displayed as indented text.
      • <body> : Contains the main content of the HTML document. Everything visible on the page goes inside the <body> tag.
      • <br> : Inserts a line break, used to move text or elements onto the next line.

      C

        - ***<button>*** : Represents a clickable button that can trigger an action or event on a web page.
        • <canvas> : Used to draw graphics via scripting (usually JavaScript).
        • <caption> : Defines a title or explanation for a table.
        • <cite> : Denotes the title of a work, such as a book, website, or research paper.
        • <code> : Defines a piece of computer code within a document. Typically displayed in a monospaced font.
        • <col> : Specifies column properties for an HTML table. Works with the <colgroup> tag.
        • <colgroup> : Groups columns in a table for applying style or layout properties.

        D

          - ***<data>*** : Links content with a machine-readable equivalent, typically through a value attribute.
          • <datalist> : Provides an input field with a list of predefined options.
          • <dd> : Represents the description or definition of a term in a description list.
          • <del> : Denotes text that has been deleted from a document.
          • <details> : Creates an interactive element that users can open and close to reveal or hide content.
          • <dfn> : Indicates a term that is being defined.
          • <dialog> : Represents a dialog box or window.
          • <div> : A generic container for grouping HTML elements, used primarily for layout and styling.
          • <dl> : Defines a description list, containing terms and their descriptions.
          • <dt> : Represents a term in a description list, used inside <dl>.

          E

            - ***<em>*** : Emphasizes text, typically displayed in italics. Emphasis carries semantic meaning, unlike the <i> tag.
            • <embed> : Embed external content, such as multimedia or interactive elements.

            F

              - ***<fieldset>*** : Groups related elements within a form.
              • <figcaption> : Provides a caption for an <figure> element.
              • <figure> : Groups media content (like images or videos) with an optional caption, usually through <figcaption>.
              • <footer> : Represents the footer of a document or section, typically containing copyright, contact, or navigation information.
              • <form> : Creates an HTML form for user input, typically including input fields, checkboxes, and buttons.

              H

                - ***<h1> to <h6>*** : Defines headings, with <h1> being the highest level and <h6> the lowest.
                • <head> : Contains metadata and links to external resources like stylesheets or scripts. It does not display content on the page.
                • <header> : Represents a section of introductory content or navigational links for a page or a section.
                • <hr> : Inserts a horizontal rule (a line) to visually separate content.
                • <html> : The root element of an HTML document, containing all other elements.

                I

                  - ***<i>*** : Italicizes text for stylistic purposes, without adding semantic emphasis. Use <em> for emphasizing text.
                  • <iframe> : Embeds another HTML page inside the current document.
                  • <img> : Embeds an image. It is a self-closing tag with attributes such as src (source) and alt (alternative text).
                  • <input> : Represents an input field in a form, allowing users to enter data.
                  • <ins> : Indicates inserted text, typically underlined to show the addition.

                  K

                    - ***<kbd>*** : Defines keyboard input, typically displayed in a monospaced font to represent user interaction.

                    L

                      - ***<label>*** : Labels a control element, like an input field, making the form more accessible.
                      • <legend> : Defines a caption for a <fieldset> element in a form.
                      • <li> : Defines an item in an ordered (<ol>) or unordered (<ul>) list.
                      • <link> : Links external resources, such as stylesheets, to the HTML document.

                      M

                        - ***<main>*** : Indicates the main content of the document, distinguishing it from sidebars or navigation.
                        • <map> : Defines an image map, with clickable areas defined using <area> tags.
                        • <mark> : Highlights text, typically with a yellow background.
                        • <meta> : Provides metadata about the document, like its description, keywords, and viewport settings.
                        • <meter> : Represents a scalar measurement within a known range, such as a gauge or progress indicator.

                        N

                          - ***<nav>*** : Defines a section of navigation links.
                          • <noscript> : Provides fallback content for users who have JavaScript disabled in their browser.

                          O

                            - ***<object>*** : Embeds external content, such as multimedia, into the HTML document.
                            • <ol> : Represents an ordered (numbered) list.
                            • <optgroup> : Groups related options inside a dropdown list (<select>).
                            • <option> : Defines an item in a dropdown list.
                            • <output> : Represents the result of a calculation or user action.

                            P

                              - ***<p>*** : Defines a paragraph of text.
                              • <picture> : Contains multiple <source> elements, allowing for responsive images based on device characteristics.
                              • <pre> : Displays preformatted text, preserving whitespace and line breaks.
                              • <progress> : Displays the progress of a task, like a download or file upload.

                              Q

                                - ***<q>*** : Represents a short inline quotation.

                                S

                                  - ***<s>*** : Strikes through text, indicating something that is no longer relevant or has been removed.
                                  • <samp> : Represents sample output from a program, typically displayed in a monospaced font.
                                  • <section> : Defines a section of content, used to group related content together.
                                  • <select> : Creates a dropdown list with <option> elements.
                                  • <small> : Renders text in a smaller font, typically used for disclaimers or legal text.
                                  • <source> : Specifies multiple media resources for <video>, <audio>, or <picture>.
                                  • <span> : An inline container for text or other elements, typically used for applying styles.
                                  • <strong> : Denotes text with strong importance, usually rendered in bold.
                                  • <style> : Contains CSS styles for the document.

                                  T

                                    - ***<table>*** : Defines a table.
                                    • <tbody> : Groups rows inside a table.
                                    • <td> : Represents a table cell in a row.
                                    • <template> : Holds HTML content that is not displayed when the page loads but can be instantiated later.
                                    • <textarea> : Represents a multi-line input field in a form.
                                    • <tfoot> : Defines the footer section of a table.
                                    • <th> : Defines a header cell in a table.
                                    • <thead> : Groups header rows in a table.
                                    • <time> : Represents a specific time or date.
                                    • <title> : Defines the title of the HTML document, displayed in the browser tab.
                                    • <tr> : Defines a row in a table.
                                    • <track> : Specifies text tracks for <video> or<audio>, like subtitles.

                                    U

                                      - ***<u>*** : Underlines text. Unlike <em> or <strong>, <u> is for stylistic purposes only.
                                      • <ul> : Represents an unordered (bulleted) list.

                                      V

                                        - ***<var>*** : Represents a variable in a mathematical expression or programming context.
                                        • <video> : Embeds a video file on the page.

                                        W

                                          - ***<wbr>*** : Suggests a line break opportunity for browsers, allowing the text to wrap more efficiently.

                                          3. Conclusion

                                          HTML tags are essential for creating well-structured, functional, and accessible web pages. Understanding these tags, from basic elements like <p> and <a> to more complex ones like <canvas> and <template>, is key to mastering web development. This alphabetical guide provides an easy reference to help you write clean, well-organized HTML code that enhances both the user experience and the functionality of your website. Whether you're building simple web pages or more advanced applications, this comprehensive list of HTML tags will serve as a valuable resource in your coding toolkit.

Last updated on