The New HelpHTM.htm Document
Because of the changes in the DTD, you will have to make some minor changes to the sample HelpHTM.htm document we created in Chapter 4. You will now have to delete all the p elements because the block elements are no longer child elements of the p elements. You will also have to add several p elements to wrap the a elements. Change the a element at the beginning of the document as shown here:
<p><a name="Top"><!--Top tag--></a></p> |
Then wrap all the links in the lists using the p element. For example, you can wrap the first link in the HelpHTM.htm document as follows:
<p>
<a href="FirstTimeVisitorInfo.html" target="">
First-Time Visitor Information</a>
</p>
|
If you do this and then reference the new DTD, the document is valid.