<?xml version = "1.0" encoding = "UTF-8"?>
<?xml-stylesheet type="text/css" href="cdlijst.css"?>
<xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:template match="/">
      <html>
         <head>
            <link rel="stylesheet" href="marchouben.css"/>
            <title>Contactpersonen</title>
         </head>
         <body>
            <h1>Adresboek</h1>
            <h2>Contacten</h2>
            <table border="10">
               <tr>
                  <th>Volgnummer</th>
                  <th>Voornaam</th>
                  <th>Achternaam</th>
                  <th>Mobiele Nummer</th>
                  <th>Emailadres</th>
               </tr>
               <xsl:for-each select="lijst/persoon">
                  <tr>
                     <td>
                        <xsl:value-of select="@volgnr"/>
                     </td>
                     <td>
                        <xsl:value-of select="voornaam"/>
                     </td>
                     <td>
                        <xsl:value-of select="achternaam"/>
                     </td>
                     <td style="font-size:16pt; color:#99FF00;">
                        <xsl:value-of select="mobiel"/>
                     </td>
                     <td>
                        <xsl:value-of select="email"/>
                     </td>
                  </tr>
               </xsl:for-each>
            </table>
         </body>
      </html>
   </xsl:template>
</xsl:stylesheet>