<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns="http://www.w3.org/1999/xhtml" >
<xsl:output method="html" encoding="iso-8859-1"/>
<xsl:include href="http://www.gexperthaiti.com/xml/Liens.xsl"/>
 <xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr">
<head>
  <meta http-equiv="Content-Type" content="text/html"/>
  <meta name="dc.title" content="CAlendrier fiscal haitien"/>
  <meta name="dc.creator" content="Daniel Godefroy"/>
  <meta name="dc.subject" content="Haiti, Fisc, Taxe, Calendrier"/>
  <meta name="dcterms.created" content="2006-10-01"/>
  <meta name="dc.language" content="fr"/>
  <meta name="dc.identifier" content="www.gexperthaiti.com"/>
  <meta name="description" content="Calendrier fiscal haitien"/>

  <title><xsl:value-of select="Contenu/@NOM"/></title>
<link rel="schema.dc" href="http://purl.org/dc/elements/1.1/"/>
<link rel="schema.dcterms" href="http://purl.org/dc/terms/"/>
   </head>
<body>
<table border="1" style="width:100%;">
              <tr> <thead>
              <th align="left">Taxe</th>
              <th align="left">Delai</th>
            </thead></tr>
	    <xsl:apply-templates select="Contenu"/>
</table>
</body>
</html> 
</xsl:template> 
<xsl:template match="Contenu">
	<xsl:apply-templates select="Taxe"/>
</xsl:template>
<xsl:template match = "Taxe">
<tr><td>	<xsl:value-of select="text()"/>
</td><td><xsl:apply-templates select="Delai"/></td></tr>
</xsl:template>
<xsl:template match = "Delai">
	<xsl:value-of select="text()"/>
</xsl:template>
</xsl:stylesheet>


