<?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>
    <h2> </h2>
    <table border="0">
    <tr bgcolor="#9acd32">
      <th align="left">Country</th>
      <th align="left">Capital</th>
			<th align="left">Currency</th>
			<th align="left">Languages</th>
			<th align="left">Religions</th>
    </tr>
    <xsl:for-each select="countries/country">
		<xsl:sort select="country"/>
    <tr>
      <td valign="top"><xsl:value-of select="country"/></td>
      <td valign="top"><xsl:value-of select="capital"/></td>
			<td valign="top"><xsl:value-of select="currency"/></td>
			<td valign="top"><xsl:value-of select="languages"/></td>
			<td valign="top"><xsl:value-of select="religions"/></td>
    </tr>
    </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template></xsl:stylesheet>

