XML Validator
Validate XML code.
XML
Result
About XML
Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. The W3C's XML 1.0 Specification and several other related specifications—all of them free open standards—define XML.
The design goals of XML emphasize simplicity, generality, and usability across the Internet. It is a textual data format with strong support via Unicode for different human languages. Although the design of XML focuses on documents, the language is widely used for the representation of arbitrary data structures such as those used in web services.
XML Validator
XML validator is a very useful tool especially if you are dealing with large XML files.
XML validator will highlight the errors one by one, so you can easily fix them.
Example:
<Finance>
<Insurances>
<AutoInsurance>
Protects the policyholder against financial loss.
</AutoInsurance>
<GapInsurance>
Covers the excess amount on your auto loan.
</GapInsurance>
<HealthInsurance>
Cover the cost of medical treatments.
</HealthInsurance>
</Insurances>
<Property>
<House>
val1
</House>
<Land>
<Land1>
Land1-val
</Land1>
<Land2>
Land2-val
</Land2>
</Land>
<Car>
val3
</Car>
</Property>
</Finance>
===============
Result = Valid