<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">

<html>
<head>
<title>Book Data</title>
</head>
<body>

<h2>
<xsl:value-of select="book/title"/>
</h2>

<p>
<xsl:value-of select="book/author"/>
<br />
<xsl:value-of select="book/isbn"/>
</p>

</body>
</html>

</xsl:template>
</xsl:stylesheet>

