Lugares
XML Lugares
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE lugares SYSTEM "01.dtd">
<lugares>
En el <lugar>polo norte</lugar> hace mucho frío.
Pero, en el <lugar>desierto del Sahara</lugar> hace mucho calor.
</lugares>
DTD Lugares
<!ELEMENT lugares (#PCDATA | lugar)*>
<!ELEMENT lugar (#PCDATA)>
XSD Lugares
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="lugares">
<xs:complexType mixed="true">
<xs:sequence>
<xs:element name="lugar" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>