<?xml version="1.0" encoding="UTF-8"?>
<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 	
	<body>
        <xsl:for-each select="contacts/person">
			<div style="width:60%;background:#EAEAEA;border-radius:15px;padding:5px; margin:5px;">
				<div style="background:black;color:white;">
					<h2 style="margin-bottom:0;">
						<xsl:value-of select="lastname"/>&#160;<xsl:value-of select="firstname"/>					
					</h2>			
					<p style="font-style:italic;">
						(<xsl:value-of select="birthdate"/>)
					</p>
				</div>				
				<p><xsl:value-of select="phone"/></p>
				<p><xsl:value-of select="email"/></p> 
			</div>
        </xsl:for-each>
    </body>
</html>

