<?xml version="1.0" encoding="windows-1250"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/ZBOZI">

<html>

<body>

<h1>Označení a světlá výška</h1>

<table>

<th>Motocykl</th>

<th>Označení</th>

<th>Světlá výška</th>

<xsl:apply-templates/>

</table>

</body>

</html>

</xsl:template>

<xsl:template match="MOTOCYKL">

<tr>

<td><xsl:value-of select="NAZEV"/></td>

<td><xsl:value-of select="OZNACENI"/></td>

<td><xsl:apply-templates select="SVETLA_VYSKA"/></td>

</tr>

</xsl:template>

<xsl:template match="SVETLA_VYSKA">

<xsl:value-of select="."/>

<xsl:value-of select="@UNITS"/>

</xsl:template>

</xsl:stylesheet>