Chapter 17
Chapter 17
Markup Language
Chapter 17 - 1
XSLT is an XML-based
programming language
that is used for
transforming XML into
other document
formats
XML can:
• work behind the scene to simplify the creation of HTML
for large web sites.
• Be used to exchange the information between
organizations and systems.
• Be used for offloading and reloading of databases.
• Be used to store and arrange the data.
• Be easily be merged with style sheets to create almost
any desired output.
XML Declaration
Tags and Elements
Attributes
References
Text
<?xml version="1.0"?>
• Optional but must be the first statement if used.
• Case sensitive
• Optional attributes include:
• version: Always 1.0
• encoding: Default is UTF-8
• standalone: Yes or No (Default is No)
It informs the parser whether the document relies
on information from an external source, such as
external document type definition, for its content.
<message>Welcome to TutorialsPoint</message>