<?xml version="1.0"?>
<xsl:stylesheet version="1.0" 
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:strip-space elements="*"/>

<xsl:template match="/">
<html>
	<xsl:apply-templates select="*"/>
</html>
</xsl:template>

<xsl:template match="*|processing-instruction()">
<br/>
<xsl:value-of select="position()"/>
 has name 
<xsl:value-of select="name()"/>
<br/>
<xsl:apply-templates/>
</xsl:template>

</xsl:stylesheet>
