<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

 <xsl:template match="mondial">
   <html> <body> <table>
            <xsl:apply-templates select="country"/>
       </table>  </body> </html>
 </xsl:template>

 <xsl:template match="country">
   <tr><td> <xsl:value-of select="name"/> </td>
       <td> <xsl:value-of select="@car_code"/> </td>
       <td align="right"> <xsl:value-of select="population"/> </td>
       <td align="right"> <xsl:value-of select="@area"/> </td>
   </tr>
 </xsl:template>
</xsl:stylesheet>
