<maintainer email="elharo@metalab.unc.edu" 
              url="http://www.macfaq.com/personal.html">
    <name>
      <first_name>Elliotte</first_name> 
      <middle_name>Rusty</middle_name> 
      <last_name>Harold</last_name>
    </name>
  </maintainer>
It is declared like this:
<!ELEMENT maintainer (name)>
<!ATTLIST maintainer email CDATA "webmaster@nywc.org">
<!ATTLIST maintainer url CDATA "http://metalab.unc.edu/nywc">
But it can also be declared in a single 
<!ATTLIST> declaration like this:
<!ATTLIST maintainer email 
CDATA "webmaster@nywc.org" url CDATA "http://metalab.unc.edu/nywc/">
This is more obvious with better indentation:
<!ATTLIST maintainer email CDATA "webmaster@nywc.org" 
                     url   CDATA "http://metalab.unc.edu/nywc/">