<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/">
    <xsl:apply-templates />
  </xsl:template>

  <xsl:template match="automobili">
    <table border="1" width="500">
       <xsl:apply-templates />
    </table>
  </xsl:template>

  <xsl:template match="auto">
    <tr bgcolor="#e5e5e5">
      <xsl:apply-templates select="@*" />
    </tr>
  </xsl:template>

  <xsl:template match="@*">
    <td><xsl:value-of select="." /></td>
  </xsl:template>
</xsl:stylesheet>

