XML Validator
<!DOCTYPE html> <html> <body> <pre> <!-- Well-formed: single root, properly nested, closed tags --> <order id="1042"> <customer>Priya Shah</customer> <items> <item qty="2">Notebook</item> <item qty="1">Pen &amp; Pencil Set</item> </items> </order> <!-- Malformed: overlapping tags and an unescaped ampersand --> <!-- <order id="1042"> <customer>Priya Shah <items> <item qty="2">Notebook</customer> <item qty="1">Pen & Pencil Set</item> </items> </order> --> </pre> </body> </html>