abbr
element
abbr
element
with title
attribute
BBC
<p>
<abbr id="abb-01" title="British Broadcasting Corporation">BBC</abbr>
</p>
abbr
element without title
attribute
CBS
<p>
<abbr>CBS</abbr>
</p>
abbr
element with aria-label
attribute
WWW
<p>
<abbr aria-label="world wide web">WWW</abbr>
</p>
abbr
element with aria-label
attribute and aria-describedby
attribute WWW
AKA the Internet
<p>
<abbr aria-label="world wide web" aria-describedby="desc1">WWW</abbr>
</p>
<p id="desc1">AKA the Internet</p>
abbr
element with aria-label
and title
attributes
WWW
<p>
<abbr aria-label="world wide web" title="world wide web">WWW</abbr>
</p>
abbr
element with aria-label
and title
attributes with differing values
WWW
<p>
<abbr aria-label="world wide web" title="the world wide web">WWW</abbr>
</p>