1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
<?xml version="1.0"?>
<bookstore name="The Great Book">
<book year="2015" isbn="ISBN0000000">
<name>Book1</name>
<authors>
<author>
<name>Fred</name>
<email>fweasley@hogwarts.co.uk</email>
</author>
<author>
<name>George</name>
<email>gweasley@hogwarts.co.uk</email>
</author>
</authors>
<inventory number="1" row="5" inventory="K001"/>
<inventory number="1" row="5" inventory="K002"/>
<inventory number="1" row="5" inventory="K003"/>
<inventory number="1" row="5" inventory="K004"/>
<category name="Fiction"/>
<category name="Motivational"/>
<resume chapter = "I" text="Nothing to say"/>
<resume chapter = "II" text="Nothing to say"/>
</book>
<book year="2015" isbn="ISBN0000001">
<name>Book2</name>
<authors>
<author>
<name>Fred</name>
<email>fweasley@hogwarts.co.uk</email>
</author>
<author>
<name>George</name>
<email>gweasley@hogwarts.co.uk</email>
</author>
</authors>
</book>
<book year="2014" isbn="ISBN0000000">
<name>Book3</name>
<authors>
<author>
<name>Fred</name>
<email>fweasley@hogwarts.co.uk</email>
</author>
<author>
<name>George</name>
<email>gweasley@hogwarts.co.uk</email>
</author>
</authors>
</book>
</bookstore>
|