XML direka untuk menghantar dan menyimpan data.

HTML direka untuk memaparkan data.

Elemen XML sintaks

Elemen XML merujuk kepada bahagian daripada (dan termasuk) teg permulaan hingga (dan termasuk) teg akhir.

Sesuatu elemen boleh mengandungi:

elemen lain

teks

atribut

atau gabungan semua di atas...

Elemen XML contoh

<bookstore>
    <book category="CHILDREN">
        <title>Harry Potter</title>
        <author>J K. Rowling</author>
        <year>2005</year>
        <price>29.99</price>
    </book>
    <book category="WEB">
        <title>Learning XML</title>
        <author>Erik T. Ray</author>
        <year>2003</year>
        <price>39.95</price>
    </book>
</bookstore>