<?xml version="1.0"?>

<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/xhtml1/strict">
	<body style="font-family:Arial,helvetica,sans-serif; font-size:12pt">
		<table cellspacing="0" cellpadding="4" width="100%" border="1" align="center" bordercolor="black">
			<tr>
				<td bgcolor="#fafad2">FirstName</td><td bgcolor="#fafad2">Surname</td><td bgcolor="#fafad2">Title</td><td bgcolor="#fafad2">Quantity</td><td bgcolor="#fafad2">Price</td><td bgcolor="#fafad2">Year Published</td></tr><xsl:for-each select="Library/Book">
				<tr>
					<td>
						<input>
							<xsl:attribute name="type">text</xsl:attribute><xsl:attribute name="value">
								<xsl:value-of select="FirstName"/></xsl:attribute></input></td>
					<td>
						<input>
							<xsl:attribute name="type">text</xsl:attribute><xsl:attribute name="value">
								<xsl:value-of select="Surname"/></xsl:attribute></input></td>
					<td>
						<input>
							<xsl:attribute name="type">text</xsl:attribute><xsl:attribute name="value">
								<xsl:value-of select="Title"/></xsl:attribute></input></td>
					<td>
						<input>
							<xsl:attribute name="type">text</xsl:attribute><xsl:attribute name="value">
								<xsl:value-of select="Quantity"/></xsl:attribute></input></td>
					<td>
						<input>
							<xsl:attribute name="type">text</xsl:attribute><xsl:attribute name="value">
								<xsl:value-of select="Price"/></xsl:attribute></input></td>
					<td>
						<input>
							<xsl:attribute name="type">text</xsl:attribute><xsl:attribute name="value">
								<xsl:value-of select="Year_Published"/></xsl:attribute></input></td></tr></xsl:for-each></table></body></html>

