Quackit Logo
HTML
CSS
Scripting
Database
Hosting
Design
XML
Website builder

XML Attributes

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:

<tag attribute="value">Data</tag>

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

Quotes

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

Wrong:

<tutorials type=Web>
  <tutorial>
    <name>XML</name>
  </tutorial>
</tutorials>

Right:

<tutorials type="Web">
  <tutorial>
    <name>XML</name>
  </tutorial>
</tutorials>

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:

<tutorials published>
  <tutorial>
    <name>XML</name>
  </tutorial>
</tutorials>

Right:

<tutorials published="true">
  <tutorial>
    <name>XML</name>
  </tutorial>
</tutorials>

Enjoy this page?

  1. Add this page to your Favorites
  2. Link to this page (copy/paste into your own website or blog):
  3. Link to Quackit using one of these banner ads.

Thanks for supporting Quackit!