<?xml version="1.0" encoding="UTF-8"?>
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html" indent="no"
   doctype-public="-//W3C//DTD HTML 4.01//EN"
   doctype-system="http://www.w3.org/TR/REC-html40/strict.dtd" />
  
  <xsl:template match="/records">
   <html>
    <head>
     <title><xsl:value-of select="title" /></title>
    </head>
    <body> 
     <h1><xsl:value-of select="title" /></h1>
     <table border="1" width="400">
      <xsl:for-each select="record">
       <tr>
        <td rowspan="2" width="256"><img src="{screenshot}" alt="screenshot" /></td>
        <th>Player name:</th> <td><xsl:value-of select="@player" /></td>
       </tr><tr>
        <th>Completion time:</th> <td><xsl:value-of select="time" /></td>   
       </tr>
      </xsl:for-each>
     </table>
    </body>
   </html>
  </xsl:template> 
 </xsl:stylesheet>

