Webdesign Glossary - XML

XML (Extensible Markup Language) is a language with the purpose of acting as a "container for information", meaning a way to standardize data so that it can be retrieved by many different types of systems and software. XML is used in particular on the world wide web.

Example of XML code to define the properties in a few vegetables:

<?xml version="1.0" ?>
<vegetables>
  <veggie>
    <name>Tomato</name>
    <color>Red</color>
    <texture>Soft</texture>
  </veggie>

  <veggie>
    <name>Cucumber</name>
    <color>Dark green</color>
    <texture>Hard outside, soft inside</texture>
  </veggie>

  <veggie>
    <name>Broccoli</name>
    <color>Light green</color>
    <texture>Firm throughout</texture>
  </veggie>
</vegetables>




Back to the Web Glossary index
www.eagleowl.se      Phone: 026-16 13 61      E-mail: robert@eagleowl.se
All content ©2012 EagleOwl