<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="html"/>

	<xsl:template match="/Weather">
		<font color="blue">&lt;</font>
		<font color="maroon">weather</font>
		<font color="blue">&gt;</font>
		<br/>
		<xsl:apply-templates/>
		<font color="blue">&lt;</font>
		<font color="black">/</font>
		<font color="maroon">weather</font>
		<font color="blue">&gt;</font>
	</xsl:template>

	<xsl:template match="*">
		&#160;&#160;&#160;<font color="blue">&lt;</font><font color="maroon">
			<xsl:value-of select="name(.)"></xsl:value-of>
		</font><font color="blue">&gt;</font>
		<xsl:value-of select="."></xsl:value-of>
		<font color="blue">&lt;</font>
		<font color="black">/</font>
		<font color="maroon">
			<xsl:value-of select="name(.)"></xsl:value-of>
		</font>
		<font color="blue">&gt;</font>
		<br/>
	</xsl:template>


</xsl:stylesheet>
