Hello, World!
Hello, World!
Hello, World!
<text>Hello, world!</text>
</message>
----------------------------------------
<note>
<to>students</to>
<from>department</from>
<heading>time table</heading>
<body>Test is scheduled from next week</body>
</note>
-------------------------------------
-----------------------------------------------------------------
-------------------------------------------------------------------
<garden>
<plants category = "flowers" />
<plants category = "shrubs">
</plants>
</garden>
1. <?xml version="1.0"?>
2. <!DOCTYPE employee SYSTEM "employee.dtd">
3. <employee>
4. <firstname>vimal</firstname>
5. <lastname>jaiswal</lastname>
6. <email>[email protected]</email>
7. </employee>
--------------------------------------------------------
1. <bookstore>
2. <book category="COOKING">
3. <title lang="en">Everyday Italian</title>
4. <author>Giada De Laurentiis</author>
5. <year>2005</year>
6. <price>30.00</price>
7. </book>
8. <book category="CHILDREN">
9. <title lang="en">Harry Potter</title>
10. <author>J K. Rowling</author>
11. <year>2005</year>
12. <price>29.99</price>
13. </book>
14. <book category="WEB">
15. <title lang="en">Learning XML</title>
16. <author>Erik T. Ray</author>
17. <year>2003</year>
18. <price>39.95</price>
19. </book>
20. </bookstore>
--------------------------------------------------------