XSL stylesheet

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/">
   <html>
    <body>
     <h3>Pages at Your Online Ally</h3>
     <p>These pages are at Your Online Ally</p>
     <p>
     <ul>
      <!-- Now apply templates to all children -->
      <xsl:for-each select="urlset/url">
       <li><xsl:value-of select="loc"/></li>
      </xsl:for-each>
     </ul>
     </p>
    </body>
   </html>
  </xsl:template>

</xsl:stylesheet>