<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	<!--begin template rule-->

	<!--pattern-->

	<xsl:template match="/">

		<!--action-->

		<HEAD font-size="24pt" color="red">
                  <h1>
                        <p>Books Checked Out</p>
                  </h1>
  	        </HEAD>
                <BODY>
			<xsl:apply-templates/>
                </BODY>

	</xsl:template>

        <xsl:template match="BOOK">
        <p>
            <xsl:value-of select="TITLE"/>
        </p>
	</xsl:template>

	<!--end template rule-->

</xsl:stylesheet>