Skip to main content

XML Tutorial

XML stands for Extensible Markup Language and is a text-based markup language derived from Standard Generalized Markup Language (SGML).

This XML Tutorial provides a detailed knowledge of XML technology like what is xml, features of xml, xml example, xml related technologies, creating xml structure by DTD, creating xml structure by schema (XSD), difference between DTD and schema.

Why Study XML?

  • XML plays an important role in many different IT systems.
  • XML is often used for distributing data over the Internet.
  • It is important to have a good understanding of XML.

Example

<?xml version="1.0"  encoding="UTF-8"?>  
<note>
<to>Bob</to>
<from>Alice</from>
<heading>Hey!</heading>
<body>Don't forget me this weekend!</body>
</note>


Table of Contents