<?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html><body style="font: bolder 18pt; color: blue"> <h1 style="color: red">Employees</h1> <xsl:apply-templates select="//employee"> <xsl:sort select="name/last"/> <xsl:sort select="name/first"/> </xsl:apply-templates> </body></html> </xsl:template> <xsl:template match="employee"> <xsl:value-of select="name/last"/>, <xsl:value-of select="name/first"/> <br/> </xsl:template> </xsl:stylesheet>