XML – Comments

  • Post author:
  • Post category:XML
  • Post comments:0 Comments

This chapter explains how comments work in XML documents. XML comments are similar to HTML comments. The comments are added as notes or lines for understanding the purpose of an XML code.…

Continue ReadingXML – Comments

XML – Attributes

  • Post author:
  • Post category:XML
  • Post comments:1 Comment

This chapter describes the XML attributes. Attributes are part of XML elements. An element can have multiple unique attributes. Attribute gives more information about XML elements. To be more precise, they…

Continue ReadingXML – Attributes

XML – Tags

  • Post author:
  • Post category:XML
  • Post comments:0 Comments

Let us learn about one of the most important part of XML, the XML tags. XML tags form the foundation of XML. They define the scope of an element in XML. They…

Continue ReadingXML – Tags

XML – Documents

  • Post author:
  • Post category:XML
  • Post comments:0 Comments

An XML document is a basic unit of XML information composed of elements and other markup in an orderly package. An XML document can contains wide variety of data. For example, database of numbers,…

Continue ReadingXML – Documents

XML – Syntax

  • Post author:
  • Post category:XML
  • Post comments:0 Comments

In this chapter, we will discuss the simple syntax rules to write an XML document. Following is a complete XML document − <?xml version = "1.0"?> <contact-info> <name>Dinesh choudhary</name> <company>adgob.in</company>…

Continue ReadingXML – Syntax

XML – Overview

  • Post author:
  • Post category:XML
  • Post comments:2 Comments

XML stands for Extensible Markup Language and is a text-based markup language derived from Standard Generalized Markup Language (SGML). This tutorial will teach you the basics of XML. The tutorial is divided into…

Continue ReadingXML – Overview

XML – Elements

  • Post author:
  • Post category:XML
  • Post comments:2 Comments

XML elements can be defined as building blocks of an XML. Elements can behave as containers to hold text, elements, attributes, media objects or all of these. Each XML document contains…

Continue ReadingXML – Elements