Introduction to <abbr>tags

The <abbr>in HTML : Abbreviation or Acronym For the first use of acronyms, you must include them in full with a decoded abbreviation markup <abbr>. Also, you can use the optional title attribute to specify what expansion of abbreviation or acronym when not clearly explained. The title attribute should be used for the term description in full.

Copy to clipboard
 <!DOCTYPE html>
  <html lang="en">
   <head>
    <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
       <title>Styled Code Blocks</title>
        </head>
         <body>
         <p>The <abbr title="Hypertext Markup Language">HTML</abbr> specification is maintained by the W3C.</p>

         <p>The term <abbr title="As Soon As Possible">ASAP</abbr> is often used in business communications.</p>
         
         <p>Many web developers use <abbr title="Cascading Style Sheets">CSS</abbr> and <abbr title="JavaScript">JS</abbr> along with <abbr title="Hypertext Markup Language">HTML</abbr>.</p>
         
         <p>The <abbr title="Hypertext Markup Language">HTML</abbr> specification is maintained by the W3C.</p>
         
         <p>The <abbr title="Hypertext Markup Language" class="important-abbr">HTML</abbr> specification is maintained by the W3C.</p>
         
         <p>The <abbr title="Hypertext Markup Language" style="color: blue;">HTML</abbr> specification is maintained by the W3C.</p>
         
         <p>The <abbr title="Hypertext Markup Language" lang="en">HTML</abbr> specification is maintained by the W3C.</p>
         
         <p>The <abbr title="Hypertext Markup Language" data-info="web-standard">HTML</abbr> specification is maintained by the W3C.</p>
         
         <p>The <abbr title="Hypertext Markup Language, a web standard">HTML</abbr> specification is maintained by the W3C.</p>
         
         <p>The <abbr title="Hypertext Markup Language" tabindex="0">HTML</abbr> specification is maintained by the W3C.</p>
         
         <p>The <abbr title="Hypertext Markup Language" contenteditable="true">HTML</abbr> specification is maintained by the W3C.</p>
         
         <p>The <abbr title="Hypertext Markup Language" dir="ltr">HTML</abbr> specification is maintained by the W3C.</p>
         
         <p>The <abbr title="Hypertext Markup Language" hidden>HTML</abbr> specification is maintained by the W3C.</p>
         </body></html>
Copy to clipboard
 .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #0056b3;
}

Global Attributes

AttributesDescription
accesskeySpecifies a shortcut key to activate or focus an element.
autocapitalizeControls whether and how text input is automatically capitalized.
classSpecifies one or more class names for the element, allowing CSS styling and JavaScript manipulation.
contenteditableSpecifies whether the content of an element is editable or not.
contextmenuSpecifies a context menu for the element.
dirDefines the text direction. Possible values are "ltr" (left-to-right), "rtl" (right-to-left), and "auto".
draggableSpecifies whether an element is draggable. Possible values are "true" or "false".
enterkeyhintSpecifies the action label or icon to be shown for the enter key on virtual keyboards.
hiddenIndicates that the element is not yet, or is no longer, relevant. The browser does not display elements that have the `hidden` attribute set.
idSpecifies a unique identifier for the element.
inputmodeProvides a hint to browsers for which virtual keyboard configuration to use when editing this element or its descendants.
isAllows you to specify the type of custom element.
langSpecifies the language of the element's content.
nonceA cryptographic nonce ("number used once") that can be used by Content Security Policy (CSP) to determine whether or not a given fetch will be allowed to proceed.
partSpecifies the element’s part in the shadow DOM.
slotAssigns a slot in a shadow DOM shadow tree.
spellcheckIndicates whether the element is subject to spell checking.
styleProvides inline CSS styling for the element.
tabindexSpecifies the tab order of the element.
titleAdds extra information about the element, displayed as a tooltip when hovering over the element.
translateSpecifies whether the content of the element should be translated. Possible values are "yes" or "no".
HTML AttributesGlobal AttributesEvent Attributes
To view the full list
To view the full list
To view the full list
elementsChrome BrowsersMicrosoft Edge BrowserFirefox BrowsersSafari BrowserOpera Browser
<abbr>YesYesYesYesYes