<!DOCTYPE html 
     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Html Annotation Using Invisible Elements</title>
<link rel="stylesheet" type="text/css" href="PopulationGraph.css"/>
<script type="text/javascript" src="DrawPopulationGraphBars.js"></script>

</head>

<body onload="drawPopulationBars(getPopulationFromElement);">
<h1>Populations of Western English-Speaking Countries</h1>

<p><b>Implementation:</b> Specify population of each country
as an invisible element within each table cell containing the country's name.</p>

<table id="populationTable">
<tr><td id="australia">Australia<span class="population">20000000</span></td></tr>
<tr><td id="canada">Canada<span class="population">33000000</span></td></tr>
<tr><td id="ireland">Ireland<span class="population">4000000</span></td></tr>
<tr><td id="nz">New Zealand<span class="population">4000000</span></td></tr>
<tr><td id="uk">United Kingdom<span class="population">61000000</span></td></tr>
<tr><td id="usa">United States of America<span class="population">298000000</span></td></tr>
</table>

<p><input type="button" value="W3C Validate this page" onclick="w3cValidate();"/> (validates)</p>

</body>
</html>