left up right
Example
<XML id="sourceDocument">  Data Island for document
<thought>
  <title>A Thought</title>
  <body>All those things for which we have no words are lost</body>
  <author>Annie Dillard</author>
</thought>
</XML>

<XML id="stylesheet">   Data Island for stylesheet
<xsl:template match="/"   xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  <xsl:for-each select="/thought"> 
    <h2 style="color:red"><xsl:value-of select="title" /></h2>  
    <h3 style="color:blue;">(by: <xsl:value-of select="author" />)</h3>
    <p style="color:green"><xsl:value-of select="body" /></p> 
    <p style="font-size:16pt;font-family:'Bradley Hand ITC';
    font-weight:bold;color:mauve">
      <xsl:value-of select="author" /></p> 
  </xsl:for-each>
</xsl:template>
</XML>