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

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

<xsl:template match="/">

<html>

<head>

<title>Tabulka motocyklů</title>

</head>

<body>

<xsl:apply-templates select="ZBOZI"/>

</body>

</html>

</xsl:template>

<xsl:template match="ZBOZI">

<h1>Tabulka motocyklů</h1>

<table>

<tr>

<td><b>Motocykl</b></td>

<td><b>Označení</b></td>

<td><b>Karburátor</b></td>

</tr>

<xsl:apply-templates select="MOTOCYKL"/>

</table>

</xsl:template>

<xsl:template match="MOTOCYKL">

<tr>

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

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

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

</tr>

</xsl:template>

</xsl:stylesheet>