Elements and Attributes

Elements and Attributes

Written

Depending on who is teaching, different terms mean the same things...

The term elements means the tags.

The term attributes means properties.

Part of the previous example of XML looks like this:

Each piece of information is in its own element (tag). The child elements (nested tags) may be shown as attributes (properties) instead of elements. Here is the same example switching the TITLE tag into a property instead of being a full tag on its own...

The same effect can be done for any of the other child elements as well...

Technically, both styles of coding are correct. Having items as properties instead of tags though kinda defeats the purpose of modular XML processing.

Table of Contents

Previous
My First XML Page