XML tutorial
XML refers to Extensible Markup Language (eXtensible Markup Language).
XML is designed to transmit and store data.
XML is important and easy to learn.
Start learning XML now!
XML document example
<?xml version="1.0"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading> Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note>
<to>Tove</to>
<from>Jani</from>
<heading> Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
##XML ExampleLearn through examples! Using our editor, you can edit the XML code and click the test button to see the results. try it!