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

  <xsl:template match="/">
    <html>
     <head>
      <title>First Attempt</title>
     </head>
    <body>
      <p>The Weavers…</p>
      <h1>And Their Libraries</h1>
	<p>Weavers can never have too many magazines or books!</p>
        <xsl:apply-templates/>
     </body>
    </html>
   </xsl:template>	

   <xsl:template match="magazine">
       <p>  
         <xsl:value-of select="title"/>
       </p>
   </xsl:template>
 </xsl:stylesheet>


