Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML abbreviations</title> </head> <body> <p>The <abbr title="Hyper Text Markup Language">HTML</abbr> is the publishing language of the World Wide Web.</p> <p>The <acronym title="Hyper Text Markup Language">HTML</acronym> is the publishing language of the World Wide Web.</p> <p><strong>Warning:</strong> The <acronym> tag has been removed in HTML5 and shouldn't be used anymore. Use the <abbr> tag instead.</p> </body> </html>