<?xml version = "1.0"?>

<!-- This is the root element -->
<catalog>

<!-- One book element for each item in the catalog -->
<book code="A001" isbn="a1234567">
  <title> The Flowers of Evil </title>
  <author>Baudelaire, Charles</author>
  <publisher>New York: New Directions</publisher>
  <year>1955</year>
  <description>
    First edition. <br></br>
    <!-- The following is a CDATA Section -->
    <![CDATA[
    Selected and edited by Marthiel&Jackson Matthews. 
    ]]>
    <!-- End CDATA Section -->
    <br/>
    Contains the first English-language publication of 
    Baudelaire's "Three Drafts of a Preface," 
    which appears at the head of the poems.
  </description>
</book>

<book code="A002" isbn="a1234568">
  <title>Twenty Love Poems and a Song of Despair</title>
  <author>Neruda, Pablo</author>
  <publisher>London: Jonathan Cape</publisher>
  <description>
    Translated from the Spanish by W.S. Merwin.
  </description>
</book>

<book code="A003" isbn="a1234569">
  <title>Complete Poems of Edgar Allan Poe</title>
  <author>Poe, Edgar Allan</author>
  <publisher>Heritage Press</publisher>
  <year>1971</year>
</book>

</catalog>
