XML – HTML -CSS
GETTING STARTED WITH WEB UI
•XML stands for eXtensible Markup Language. It is a markup
XML language that allows users to define their own tags and structure
data in a self-descriptive way. XML was designed to store and
<?xml version="1.0" encoding="UTF- transport data across different platforms and applications.
8"?>
<mail>
<title> •XML is derived from SGML, the Standard Generalized Markup
Hello Language, which was developed in the 1970s by IBM and later
</title>
became an ISO standard in 1986 . SGML was a very complex and
<from>
powerful language, but it was also difficult to use and implement.
lucky
</from> XML was created in the 1990s by a group of experts from the World
<to> Wide Web Consortium (W3C) as a simplified subset of SGML . XML
Lisa was intended to be more flexible, readable, and interoperable than
</to> SGML.
<message>
HI Lisa, How are
you? •XML became a W3C recommendation in 1998 and has since been
</message> widely adopted as a standard for data exchange on the web and
</mail> beyond. XML is also the basis for many other related specifications,
such as XML Schema, XSLT, XPath, XQuery, SOAP, RSS, and XHTML.
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book category="cooking">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
EXAMPLE, </book>
<book category="children">
<title lang="en">Harry Potter</title>
XML WITH <author>J K. Rowling</author>
<year>2005</year>
ATTRIBUTES <price>29.99</price>
</book>
<book category="web">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>