home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / XML Writer 2.12 / XML writer.exe / file0018.bin < prev    next >
Encoding:
Extensible Markup Language  |  2003-04-14  |  944 b   |  29 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--What you can do with this file:
  4.     1. Check that it validates against the DTD, PassportExt.dtd, assigned to it.
  5.        To validate, select 'Validate' from the Tools menu, or press F7.-->
  6.  
  7. <!-- DOCTYPE declaration, specifying an external DTD file, PassportExt.dtd.-->
  8. <!DOCTYPE passport_details SYSTEM "Passport.dtd">
  9.  
  10. <passport_details>
  11.     <!--An entity called &cert; is referenced. This entity is replaced by the
  12.         text file referenced in the DTD.-->
  13.     <birth_cert>&cert;</birth_cert>
  14.     <last_name>Citizen</last_name>
  15.     <first_name>Jo</first_name>
  16.     <address>
  17.         <street>X Street</street>
  18.         <city>X City</city>
  19.         <state>X State</state>
  20.         <postal_code>XXXX</postal_code>
  21.         <country>X Country</country>
  22.     <email>jo@citizen.com</email>
  23.     </address>
  24. </passport_details>
  25.  
  26. <!--This file was created using XMLwriter v2.0 Beta 2.
  27.     Copyright Wattle Software 2002. All rights reserved.
  28.     http://XMLwriter.net/-->
  29.