XSL stylesheet 1

<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:template match="driver/*">
<i><xsl:value-of select="."/></i>
</xsl:template>
<xsl:template match="pedestrian/*">
<B><xsl:value-of select="."/></B>
</xsl:template>
</xsl:stylesheet>