Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ATTLIST error

Status
Not open for further replies.

Hellpig

Technical User
Joined
Nov 27, 2001
Messages
1
Location
SE
Hi... When I try to use this code (see below) I get this error message: "this file is not well-formed. % expected"
If anyone could give me some help, it would be appriciated! /Magnus


Code:
<?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>
<!-- Intern DTD...-->
<!DOCTYPE catalog [
<!ELEMENT catalog (Individ*)>
<!ELEMENT Individ (Name, Direct, Email)>
<!ELEMENT Namn (#PCDATA)>
<!ATTLIST Name type
font (Courier New|Times New Roman) &quot;Courier New&quot;
size (10|12|14) &quot;12&quot;>
<!ELEMENT Direct (#PCDATA)>
<!ELEMENT Email (#PCDATA)>
]>
<catalog>
<Individ>
<Name>Lars Nilsson</Name>
<Direct>999</Direct>
<Email>Lars.Nilsson@onsala.com</Email>
</Individ>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top