<html>
<title>Example of DTD in HTML</title>
<body>
<pre>  

&lt;!-- Example DTD   
blah
blah
blah
blah
blah
blah
blah
blah --&gt;
                            

<a name="gi-a" />&lt;!-- Element a is the top-level element --&gt;
&lt;!ELEMENT a ( <a href="#gi-b">b</a> )&gt;

&lt;!--CONTENTS: blah --&gt; 
&lt;!--USAGE: blah --&gt; 
&lt;!--ALLOWABLE VALUES: blah --&gt;
&lt;!--EXAMPLE: blah --&gt;
&lt;!--
blah
blah
blah
blah --&gt;

<a name="gi-b" />&lt;!-- Element b is the bottom element --&gt;
&lt;!ELEMENT b (<a href="#xml-pcdata">#PCDATA</a> )&gt;
    
&lt;!--CONTENTS: blah --&gt; 
&lt;!--USAGE: blah --&gt; 
&lt;!--ALLOWABLE VALUES: blah --&gt;
&lt;!--EXAMPLE: blah --&gt;
&lt;!--
blah
blah
blah
blah --&gt;



&lt;!ATTLIST <a href="#gi-a">a</a> 
    id <a href="#xml-id">ID</a>  #REQUIRED &gt;

&lt;!--CONTENTS: blah --&gt; 
&lt;!--USAGE: blah --&gt; 
&lt;!--ALLOWABLE VALUES: blah --&gt;
&lt;!--EXAMPLE: blah --&gt;
&lt;!--
blah
blah
blah
blah --&gt;


    
 <a name="xml-id" />&lt;!-- ID attributes must be unique --&gt;

<a name="xml-pcdata" />&lt;!-- #PCDATA means that this element can have data (text), PIs, entity 
and character references, but no sub-elements --&gt; 
&lt;!--
blah
blah
blah
blah
blah
blah
blah
blah --&gt;  
&lt;!-- 
blah
blah
blah
blah
blah
blah
blah
blah --&gt;

</pre>
</html>