Example of HTML abbreviations - HTML CSS HTML

HTML CSS examples for HTML:Text Format

Description

Example of HTML abbreviations

Demo Code

ResultView the demo in separate window

The acronym tag has been removed in HTML5 and shouldn't be used anymore. Use the abbr tag instead.

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML abbreviations</title> 
 </head> <!--from   w w w.j a  va  2s.com-->
 <body> 
  <p><abbr title="Hyper Text Markup Language">HTML</abbr> test test test.</p> 
  <p><acronym title="Hyper Text Markup Language">HTML</acronym> test test test.</p> 

 </body>
</html>

Related Tutorials