XML Validator
Check whether your XML file is valid or not
XML Validator
What is XML ?
XML (Extensible Markup Language) is a markup language (remmber HTML?) designed to store and transport data. If you already familiar with HTML, you may notice that the syntax of XML and HTML is pretty close. But XML is often used to represent data and the child is enclosed by their parent.
Sample of Valid XML :
<?xml version="1.0" encoding="UTF-8"?>
<name>doggy</name>
<skills>
<duration>5</duration>
<name>bark</name>
</skills>
<skills>
<duration>2</duration>
<name>smile</name>
</skills>
<skills>
<duration>99999</duration>
<name>loving</name>
</skills>
or
<Power>
9000
</Power>
Sample of Invalid XML :
blablabla
or
<Power>9000