<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
version="1.0">

<xsl:template match="employee">
  <li>
    <b><xsl:value-of select="employee_id"/></b>, 
    <i><xsl:value-of select="employee_name"/></i> working at Global Guide Line. 
  </li> 
</xsl:template>

</xsl:stylesheet>
