<?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" version="4.01" encoding="UTF-8"
      doctype-public="-//W3C//DTD HTML 4.01//EN"
      doctype-system="http://www.w3.org/TR/html4/strict.dtd"
      indent="yes"/>

  <xsl:template match="name">
<html>
  <head>
    <title>Name of node</title>
  </head>
  <body>

    <p>The name of the node <xsl:value-of select="@nodeid"/> 
      is <xsl:value-of select="."/></p>

  </body>
</html>

  </xsl:template>

</xsl:stylesheet>
