<?xml version="1.0" ?> 

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">


<xsl:template match="/">

<html>


<body>
<center>


<xsl:apply-templates />

</center>
</body>

</html>
</xsl:template>





<xsl:template match="menu">


<h2>
<xsl:value-of select="restaurant" />
</h2>


<table cellpadding="3" border="1">

<tr>
<td>Name</td>
<td>Description</td>
<td>Price</td>

</tr>



<xsl:for-each select="item">

<tr>

<td>
<xsl:value-of select="name" /></td>

<td>
<i>
<xsl:value-of select="description" />
</i>
</td>

<td>
<xsl:value-of select="price" /></td>
</tr>
</xsl:for-each>


</table>


</xsl:template>


</xsl:stylesheet>

