20 lines
575 B
XML
20 lines
575 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
<bookstore xmlns:bk="urn:samples">
|
|||
|
<book genre="novel" publicationdate="1999" bk:ISBN="0192100262">
|
|||
|
<title>Pride and Prejudice</title>
|
|||
|
<author>
|
|||
|
<first-name>Jane</first-name>
|
|||
|
<last-name>Austen</last-name>
|
|||
|
</author>
|
|||
|
<price>24.95</price>"
|
|||
|
</book>
|
|||
|
<book genre="novel" publicationdate="1985" bk:ISBN="0771008139">
|
|||
|
<title>The Handmaid's Tale</title>
|
|||
|
<author>
|
|||
|
<first-name>Margaret</first-name>
|
|||
|
<last-name>Atwood</last-name>
|
|||
|
</author>
|
|||
|
<price>29.95</price>
|
|||
|
</book>
|
|||
|
</bookstore>
|