Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<?xml version="1.0" encoding="UTF-8"?> <library> <!-- Element with attributes and a text node child --> <book id="b001" available="true"> <title>Learning XML</title> <author>Erik Ray</author> <!-- Numeric text content --> <pages>416</pages> <!-- Attribute value with entity reference --> <publisher name="O'Reilly Media" /> <!-- Text node with entity references --> <description> This book covers XML & related standards. Price is < $50. </description> </book> <!-- Self-closing element (empty element) --> <placeholder id="b002" /> <!-- Element names: case-sensitive --> <Book>This is different from <book> above</Book> </library>
Result
Open