Created
September 27, 2019 12:52
-
-
Save willianrschuck/11559e772e3ca0df97470ae31a80d1de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!ELEMENT pessoas (pessoa*)> | |
| <!ELEMENT pessoa (nome, endereco, salario, sexo, email, telefones)> | |
| <!ATTLIST pessoa codigo CDATA #REQUIRED> | |
| <!ELEMENT nome (#PCDATA)> | |
| <!ELEMENT endereco (#PCDATA)> | |
| <!ELEMENT salario (#PCDATA)> | |
| <!ELEMENT sexo (#PCDATA)> | |
| <!ELEMENT email (#PCDATA)> | |
| <!ELEMENT telefones (numero*)> | |
| <!ELEMENT numero (#PCDATA)> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE pessoas SYSTEM "Pessoas.dtd"> | |
| <pessoas> | |
| <pessoa codigo="1"> | |
| <nome>Willian Schuck</nome> | |
| <endereco>R. Moema - São José</endereco> | |
| <salario>0</salario> | |
| <sexo>m</sexo> <!-- Pode ser apenas m ou f --> | |
| <email>[email protected]</email> | |
| <telefones> | |
| <numero>(54) 984125076</numero> | |
| </telefones> | |
| </pessoa> | |
| <pessoa codigo="2"> | |
| <nome></nome> | |
| <endereco></endereco> | |
| <salario></salario> | |
| <sexo></sexo> <!-- Pode ser apenas m ou f --> | |
| <email></email> | |
| <telefones> | |
| <numero></numero> | |
| </telefones> | |
| </pessoa> | |
| </pessoas> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment