PPT Slide
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/"><html><head><title>
<xsl:value-of select="/address/companyName" /> Address
<xsl:for-each select="/address">
<table border="1"><tr><td>Company: </td><td>
<b><xsl:value-of select="companyName" /></b></td></tr>
<tr><td rowspan="3">Address: </td>
<td><xsl:value-of select="streetNumber" />
<xsl:value-of select="streetName" /></td></tr>
<tr><td><xsl:value-of select="cityName" />,
<xsl:value-of select="postalCode" /></td></tr>
<xsl:if test="countryCode[.='GB']">United Kingdom</xsl:if>
<xsl:if test="countryCode[.='FR']">France</xsl:if>
<!-- more countries needed -->
</xsl:for-each></body></html>
An XML Stylesheet for the example