Files
LMSGI-2024-25/Unidad_04_DTD_XSD/DTD/13-xml-dtd-notation.xml
2024-09-27 14:28:05 +02:00

14 lines
448 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE marvel [
<!NOTATION JPG SYSTEM "image/jpeg">
<!NOTATION GIF SYSTEM "image/gif">
<!NOTATION PNG SYSTEM "image/png">
<!ELEMENT marvel (superheroe*)>
<!ELEMENT superheroe (#PCDATA)>
<!ATTLIST superheroe nombre CDATA #REQUIRED
tipoImagen NOTATION (GIF | JPG | PNG) #IMPLIED>
]>
<marvel>
<superheroe nombre="Thor" tipoImagen="PNG">Un Dios</superheroe>
</marvel>