<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="xsl_library.xsl"?>

<library    
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:noNamespaceSchemaLocation="library-schema.xsd">
  
  <book isbn="1234567890123">
     <title>Algorithms</title>
	 <author>
	    <first>Sally</first>
		<last>Smith</last>
	 </author>	 
	 <author>
	    <first>Bob</first>
		<last>Smith</last>
	 </author>
  </book>

  <book isbn="1234567898760" genre="fiction"> 
     <title>Databases</title>
	 <author>
	    <first>Poindexter</first>
		<last>Diffendoofer</last>
	    <favorites>
		   <fav>1234567890123</fav>
		   <fav>0000000000000</fav>
		</favorites>
	 </author>
	 
  </book>
  
  <book isbn="0000000000000">
     <title>Networking</title>
     <author>
	    <first>Jim</first>
		<last>Imeson</last>
	 </author>
  </book>

</library>