Expansion of abbreviations and acronyms in a document
This example achieves the standard 5.3 Expansion of abbreviations and acronyms in a document
Web page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-nz">
<head>
<title>Page title</title>
</head>
<body>
<p><a href="#content">Skip to content</a></p>
<hr />
<div id="header">
<h1>Org name</h1>
</div>
<div id="navigation">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about/">About</a></li>
<li><a href="/contact/">Contact</a></li>
</ul>
</div>
<div id="content">
<h1>Page Title</h1>
<p><acronym title="In My Humble Opinion">IMHO</acronym> that
<abbr title="Hyertext Markup Language">HTML</abbr> needs to be cleaned up a little.</p>
</div>
</body>
</html>