|
XML DOCUMENT |
||
| REFERENCE: DTD.HTML | ||
|
<?xml version="1.0"?> <!DOCTYPE addressbook SYSTEM "AddressBook.dtd" [ <!ENTITY amp '&#38;"> <!ENTITY apos "'"> ]> <addressbook> <!-- This is my fellow musician--> <contact> <name>Zip Lano</name> <address>3545 E Dennis the Mennis Park</address> <city>Monterey</city> <state>CA</state> <zip>93940</zip> <phone> <voice>831-648-4897</voice> <fax>831-157-3597</fax> </phone> <email>zip@riff.com</email> <company>Jamming at the Festival</company> </constact> </addressbook> Addressbook is main parent, Contact is parent for name, address, telephone number, fax and company that are nested in Contact! Copyright by New Millennium Software email for comments or requests
|