Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <listaCompra>
  2. <item nombre="leche" cantidad="12 litros"/>
  3. <item nombre="pan" cantidad="3 barras de cuarto"/>
  4. </listaCompra>
  5.  
  6. <!--Codigo Erroneo-->
  7. <¡--
  8. <?xml version="1.0" encoding="UTF-8"?>
  9. 29. <!DOCTYPE listaCompra [
  10. 30. <!ELEMENT listaCompra (item*)>
  11. 31. <!ELEMENT item EMPTY>
  12. 32. <!ATTLIST item nombre CDATA #REQUIRED>
  13. 33. <!ATTLIST item cantidad CDATA #REQUIRED>
  14. 34. ]>
  15. 35.
  16. 36. <listaCompra>
  17. 37. <leche cantidad="12 litros" ></leche>
  18. 38. <pan cantidad="3 barras de cuarto" />
  19. </listaCompra>
  20.  
  21. No existen los elementos <leche> o <pan>.Para corregirlo, habría que convertir las etiquetas <leche> y <pan> en etiquetas <item>.
  22. -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement