XML Attributes

Attributes can be added to XML elements to provide more information about the element.

The previous lesson covered the syntax rules related to XML elements. XML elements can also contain attributes. You use attributes within your elements to provide more information about the element. These are represented as name/value pairs.

Example:

It's important to remember the following syntax rules when using attributes.

Quotes

You must place quotation marks around the attribute's value.

Wrong:

Right:

Shorthand Is Prohibited

Attributes must contain a value. Some HTML coders like to use shorthand, where if you provide the attribute name without a value, it will equal true. This is not allowed in XML.

Wrong:

Right: