<?xml version="1.0" standalone="yes"?>
<!-- This is a sample email XML document and its associated DTD -->
<!-- The DTD is located at the start of the document -->
<!DOCTYPE email [
   <!ELEMENT email ( message+ ) >
   <!ELEMENT message ( to, from, cc, body+ ) >
   <!ELEMENT to ( #PCDATA ) >
   <!ELEMENT from ( #PCDATA ) >
   <!ELEMENT cc ( #PCDATA ) >
   <!ELEMENT body ( #PCDATA ) >
   <!ATTLIST message priority NMTOKEN #IMPLIED >
]
>
<email>
   <message priority="urgent">
      <to>Bert</to>
      <from>Ernie</from>
      <cc></cc>
      <body>Please buy some bubble bath on your way home</body>
      <body>Thanks</body>
   </message>
   <message>
      <to>Ernie</to>
      <from>Bert</from>
      <cc>Grover</cc>
      <body>I've sent Grover to pick it up</body>
   </message>
</email>


