feat(ch 4): added

This commit is contained in:
Rafa Muñoz
2024-09-27 14:28:05 +02:00
parent d622608575
commit 3f7e83baae
97 changed files with 1250 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?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>