<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

  <xsl:template match="/">
<p STYLE="{color:green}">For the family:</p>
      <xsl:apply-templates select="//son" />
      <xsl:apply-templates select="//daughter" />
  </xsl:template>
 
     <xsl:template match="son">
       <p STYLE="{color:blue}">a son named 
            <xsl:value-of />
        was found.</p>
      </xsl:template>

     <xsl:template match="daughter">
       <p STYLE="{color:red}">a daughter named 
            <xsl:value-of />
        was found.</p>
      </xsl:template>

</xsl:stylesheet>




