books.xml 825 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <bookstore>
  3. <book category="cooking">
  4. <title lang="en">Everyday Italian</title>
  5. <author>Giada De Laurentiis</author>
  6. <year>2005</year>
  7. <price>30.00</price>
  8. </book>
  9. <book category="children">
  10. <title lang="en">Harry Potter</title>
  11. <author>J K. Rowling</author>
  12. <year>2005</year>
  13. <price>29.99</price>
  14. </book>
  15. <book category="web">
  16. <title lang="en">XQuery Kick Start</title>
  17. <author>James McGovern</author>
  18. <author>Per Bothner</author>
  19. <author>Kurt Cagle</author>
  20. <author>James Linn</author>
  21. <author>Vaidyanathan Nagarajan</author>
  22. <year>2003</year>
  23. <price>49.99</price>
  24. </book>
  25. <book category="web" cover="paperback">
  26. <title lang="en">Learning XML</title>
  27. <author>Erik T. Ray</author>
  28. <year>2003</year>
  29. <price>39.95</price>
  30. </book>
  31. </bookstore>