<!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: paragraph pseudo classes</title>
  <style type="text/css"><![CDATA[
   p {color: green;}
   p:link {color: red;}
   p:visited {color: red;}
   p:hover {color: green;}
   p:focus {color: red;}
   p:active {color: red;}
   #one {color: red;}
  ]]></style>
 </head>
 <body>
  <p>This sentence should be green. Check that it remains green if you click it.</p>
 </body>
</html>
