﻿<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
    <html>
      <head>
        <title>Liste de vols aériens</title>
      </head>
      <body>
        <h1>Liste de vols aériens</h1>
        <dl><xsl:apply-templates/></dl>
      </body>
    </html>
  </xsl:template>

  <xsl:template match="vol">
    <dt><xsl:value-of select="@code"/></dt>
    <dd>De: <xsl:value-of select="@aérDép"/></dd>
    <dd>À: <xsl:value-of select="@aérArr"/></dd>
  </xsl:template>
</xsl:stylesheet>
