Having trouble with XML
Can anyone explain why this specific file is causing an error?
file: restaurant.xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="restaurant.css"?>
<!DOCTYPE Items SYSTEM "restaurant.dtd">
<Items>
<Item Number="1">
<Food>Hamburger</Food>
<Price currency="USD">5.75</Price>
</Item>
<Item Number="2">
<Food>HotDog</Food>
<Price currency="USD">3.50</Price>
</Item>
<Item Number="3">
<Food>Cola Drink</Food>
<Price currency="USD">2.25</Price>
</Item>
</Items>
restaurant.dtd
<!ELEMENT Items (Item+)>
<!ELEMENT Item (Food, Price)>
<!ATTLIST Item Number CDATA #REQUIRED>
<!ELEMENT Food (#PCDATA)>
<!ELEMENT Price (#PCDATA)>
<!ATTLIST Price currency (USD|INR) CDATA "USD">
The line causing trouble is <!DOCTYPE Items SYSTEM "restaurant.dtd">, showing '1' error in 'restaurant.dtd'.xml