Create simple XML document template to describe a Books with book title, author name & publication.
CODING:
<?xml version="1.0" encoding="UTF-8"?>
<bookdb>
<book>
<title>
My Journey of Life with L.J.
</title>
<author>
Prof. Anuradha Sharma
</author>
<publication>
L.J. Publications
</publication>
</book>
<book>
<title>
Half Girlfriend
</title>
<author>
Chetan Bhagat
</author>
<publication>
R Publications
</publication>
</book>
<book>
<title>
Intro to Android Programming
</title>
<author>
Krillin
</author>
<publication>
Google Inc.
</publication>
</book>
</bookdb>
CODING:
<?xml version="1.0" encoding="UTF-8"?>
<bookdb>
<book>
<title>
My Journey of Life with L.J.
</title>
<author>
Prof. Anuradha Sharma
</author>
<publication>
L.J. Publications
</publication>
</book>
<book>
<title>
Half Girlfriend
</title>
<author>
Chetan Bhagat
</author>
<publication>
R Publications
</publication>
</book>
<book>
<title>
Intro to Android Programming
</title>
<author>
Krillin
</author>
<publication>
Google Inc.
</publication>
</book>
</bookdb>
Comments
Post a Comment