books.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE bookstore SYSTEM "bookstore.dtd">
<bookstore>
<book>
<title>Introduction to XML</title>
<author>John Doe</author>
<isbn>978-0-123456-47-2</isbn>
<publisher>Example Press</publisher>
<edition>3rd</edition>
<price>39.99</price>
</book>
<book>
<title>Advanced XML Concepts</title>
<author>Jane Smith</author>
<isbn>978-0-765432-10-5</isbn>
<publisher>Tech Books Publishing</publisher>
<edition>1st</edition>
<price>45.00</price>
</book>
</bookstore>
bookstore.dtd
<!ELEMENT bookstore (book+)>
<!ELEMENT book (title, author, isbn, publisher, edition, price)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT author (#PCDATA)>
<!ELEMENT isbn (#PCDATA)>
<!ELEMENT publisher (#PCDATA)>
<!ELEMENT edition (#PCDATA)>
<!ELEMENT price (#PCDATA)>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter