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

5. 	  <p><b>Recent Postings</b></p>
6.       <xsl:for-each select="ROWSET/ROW">
7. 	  <p><b><xsl:value-of select="TITLE"/></b></p>
8.           <p><xsl:value-of select="LOCATION"/></p>
9.           <p><xsl:value-of select="SKILLS"/></p>
10.      </xsl:for-each>

11.     </html>
12.   </xsl:template>
13. </xsl:stylesheet>