<abbr> - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:abbr

Introduction

The abbr element marks an abbreviation.

You use the title attribute to provide the expanded text for the abbreviation.

The abbr Element summary

Item Value
Element abbr
Local AttributesNone
Tag Style Start and end tag
New in HTML5No
Changes in HTML5 None
Style Convention None

There is no style convention for the abbr element.

The following code shows the abbr element in use.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
   <head> 
      <title>Example</title> 
   </head> 
   <body>
       The <!--from w ww .  j  a  v  a 2  s.  com-->
      <abbr title="Cascading Style Sheets">CSS</abbr>
       is cool.  
   </body>
</html>

Related Tutorials