<?xml version="1.0"  encoding="utf-8"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:template match="/">
    <html> 
    <h3>Mon agenda</h3>
    <ul>
     <font color="blue">
          <li><xsl:value-of select="*/nom" />,
	  <xsl:value-of select="*/prénom" /> </li>
          <li><xsl:value-of select="*/adresse/ville" /> </li>
       </font>
       </ul>
     </html>
  </xsl:template>
</xsl:stylesheet>
