Wednesday, October 28, 2015

XML

10/28/2015

- eXtensible Markup Language
- is a mark up language much like HTML
- XML was designed to transport and store data, with focus on what data is, while HTML was designed to display data with the focus on how data looks
- XML tags are not predefined you have to define your own tags
- XML is designed to be self descriptive
- Every XML has start and end tag. In below ex 'Note' is Root node
-

Ex:
<Note>
<To>Jack</To>
<From>Srikanth</From>
<Heading>Reminder</Heading>
<Body>Dont forget me this weekend</Body>
</Note>



No comments:

Post a Comment