<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS 2.1 Test Suite: a pseudo classes</title>
  <style type="text/css"><![CDATA[
   a {color: green;}
   a:link {color: red;}
   a:visited {color: red;}
   a:hover {color: green;}
   a:focus {color: red;}
   a:active {color: red;}
   #one {color: red;}
  ]]></style>
 </head>
 <body>
  <p><a>This sentence should be green.</a> Check that it remains green if you click it.</p>
 </body>
</html>