<SONG CATEGORY="DISCO" ALBUM="The Best of the Village People">
...
<ARTIST URL="http://www.officialvillagepeople.com/">Village People</ARTIST>
<PHOTO SRC="hotcop.jpg" ALT="Victor Willis in Cop Outfit"
WIDTH="100" HEIGHT="200" />
name="value"
same as in HTML
or name='value'
or name = 'value'
Generally used for meta-information
Attribute order is not significant
Attribute values are quoted with either single or double quotes:
Good:
<A HREF="http://www.cafeconleche.org/">
<DIV ALIGN='CENTER'>
<A HREF="http://www.cafeconleche.org/">
<EMBED SRC="minnesotaswale.aif" hidden="true">
Bad:
<A HREF=http://www.cafeconleche.org/>
<DIV ALIGN=CENTER>
<EMBED SRC=minnesotaswale.aif hidden=true>
<EMBED SRC="minnesotaswale.aif" hidden>