What Is XML
What Is XML
What Is XML
XML is a markup language which is designed to store data. It is popularly used for
the transfer of data. It is case sensitive. XML offers you to define markup elements
and generate customized markup language. The basic unit in the XML is known as
an element. Extension of XML file is .xml
Features of XML
• XML tags are not predefined. You need to define your customized tags.
HTML XML
Closing tags are not necessarily needed. Closing tags are used mandatorily.
Showcases the design of a web page in the Enables transportation of data from database and related
way it is displayed on client-side. applications.
Extra application code is not needed to parse XML DOM application and implementation code is needed to
text. map text back into JavaScript objects.
Example of XML
<?xml version="1.0>
<address>
<name> Krishna Rungta</name>
<contact>9898613050</contact>
<email>[email protected] </email>
<birthdate>1985-09-27</birthdate>
</address>