-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbinary.XML
More file actions
24 lines (23 loc) · 795 Bytes
/
binary.XML
File metadata and controls
24 lines (23 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book category="fiction" id="B1">
<title>The Great Adventure</title>
<author>
<firstname>John</firstname>
<lastname>Smith</lastname>
</author>
<year>2023</year>
<price currency="USD">29.99</price>
<description>An exciting journey through unknown lands.</description>
</book>
<book category="non-fiction" id="B2">
<title>Web Development Basics</title>
<author>
<firstname>Sarah</firstname>
<lastname>Johnson</lastname>
</author>
<year>2022</year>
<price currency="USD">45.50</price>
<description>A comprehensive guide to modern web development.</description>
</book>
</bookstore>