<?xml version="1.0"?> <xsl:stylesheet version="1.0"                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  <xsl:template match="/">    <html>      <xsl:apply-templates select="people"/>    </html>  </xsl:template>  <xsl:template match="people">    <table>      <xsl:apply-templates select="person"/>    </table>  </xsl:template>  <xsl:template match="person">    <tr>      <td><xsl:value-of select="name"/></td>      <td><xsl:value-of select="@born"/></td>      <td><xsl:value-of select="@died"/></td>    </tr>  </xsl:template></xsl:stylesheet>