<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template match='/'>
 <HTML>
  <HEAD>
   <xsl:apply-templates select="title"/>
  </HEAD>
  <BODY>
   <xsl:apply-templates select="@*"/>
  </BODY>
 </HTML>
</xsl:template>

<xsl:template match="title">
 <H1>
  <xsl:apply-templates/>
 </H1>
</xsl:template>

<xsl:template match="p">
 <P STYLE="color: maroon">
  <xsl:apply-templates/>
 </P>
</xsl:template>

<xsl:template match="emph">
 <I>
  <xsl:apply-templates/>
 </I>
</xsl:template>

</xsl:stylesheet>

