<?xml version='1.0' encoding='UTF-8' ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="xs">
	<xsl:output version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes" media-type="text/html" method="html"/>
	<xsl:template match="/">
		<html>
			<head/>
			<body>
				<xsl:apply-templates select="employees"/>
			</body>
		</html>
	</xsl:template>
	<xsl:template match="employees">
		<table border="1">
			<thead>
				<tr>
					<td>firstname</td>
					<td>lastname</td>
					<td>deptid</td>
					<td>startdate</td>
					<td>salary</td>
					<td>contract</td>
				</tr>
			</thead>
			<tbody>
				<xsl:apply-templates select="employee"/>
			</tbody>
		</table>
	</xsl:template>
	<xsl:template match="employee">
		<tr>
			<td>
				<xsl:value-of select="firstname"/>
			</td>
			<td>
				<xsl:value-of select="lastname"/>
			</td>
			<td>
				<xsl:value-of select="deptid"/>
			</td>
			<td>
				<xsl:value-of select="startdate"/>
			</td>
			<td>
				<xsl:value-of select="salary"/>
			</td>
			<td>
				<xsl:value-of select="contract"/>
			</td>
		</tr>
	</xsl:template>
</xsl:stylesheet><!-- Stylus Studio meta-information - (c) 2004-2005. Progress Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="yes" name="employees.xml" userelativepaths="yes" externalpreview="no" url="employees.xml" htmlbaseurl="" outputurl="" processortype="internal" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext=""/></scenarios><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no" ><SourceSchema srcSchemaPath="employees.xml" srcSchemaRoot="employees" AssociatedInstance="" loaderFunction="document" loaderFunctionUsesURI="no"/></MapperInfo><MapperBlockPosition><template match="/"><block path="html/body/xsl:apply&#x2D;templates" x="150" y="232"/></template><template match="firstname"></template><template match="employees"><block path="table/tbody/xsl:apply&#x2D;templates" x="134" y="92"/></template><template match="employee"></template></MapperBlockPosition></MapperMetaTag>
</metaInformation>
-->