276 The XML Files: Develo pment of XML/XSL Applications Using WebS phere Studio
<xsl:apply-templates select="lastName|LASTNAME"/>
<xsl:apply-templates select="membership|MEMBERHSIP"/>
<xsl:apply-templates select="email|EMAIL"/>
</table>
</xsl:template>
<xsl:template match="firstName|FIRSTNAME">
<tr>
<td>firstName: </td>
<td><b><xsl:value-of select="."/></b></td>
</tr>
</xsl:template>
<xsl:template match="lastName|LASTNAME">
<tr>
<td>lastName: </td>
<td><b><xsl:value-of select="."/></b></td>
</tr>
</xsl:template>
<xsl:template match="membership|MEMBERSHIP">
<tr>
<td>membership: </td>
<td><b><xsl:value-of select="."/></b></td>
</tr>
</xsl:template>
<xsl:template match="email|EMAIL">
<tr>
<td>email: </td>
<td><b><xsl:value-of select="."/></b></td>
</tr>
</xsl:template>
</xsl:stylesheet>