<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes" encoding="iso-8859-1" />

<xsl:template match="page">
 <html lang="fr-FR" xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <link rel="stylesheet" type="text/css" href="style.css" title="hop"/> 
  <title><xsl:value-of select="title"/></title>
 </head>
 <body bgcolor="#ffffff">
  <xsl:apply-templates/>
 </body>
 </html>
</xsl:template>

<xsl:template match="content">
 <div class="la-classe">
  <xsl:apply-templates/>
 </div>
</xsl:template>

<xsl:template match="title">
 <h1 class="gros-titre">
  <xsl:apply-templates/>
 </h1>
</xsl:template>

<xsl:template match="paragraph">
 <p>
  <i><xsl:apply-templates/></i>
 </p>
</xsl:template>

</xsl:stylesheet>

