Extensible Markup Language
Wikipedia defines XML as follows:
XML (Extensible Markup Language) is a set of rules for encoding documents in both human-readable and machine-readable form. It is defined in the XML 1.0 Specification produced by the W3C, and several other related specifications, all gratis open standards.
In short, XML is:
- designed to transport and store data; and
- a flexible text format derived from SGML (ISO 8879).
Example Document
The following text is defined using XHTML and entity references; the text serves as an example of XML syntax and structure:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [
<!ENTITY hello "Hello, World!">
]>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>&hello;</title>
</head>
<body>
<div>&hello;</div>
</body>
</html>
Resources
The following links provide additional information for learning about XML:
