xml attributes deliver additional information about xml elements/tags.
xml attributes are name/value pairs delimited by equal sign and where the value is enclosed with quotes:
<element attribute="value"/>
Usually the same information can be provided with sub-elements:
<element>
<attribute>value</attribute>
</elemenbt>
Links: