Latest Tutorials

Example of accessing attributes with XPath

<?xml version="1.0" encoding="UTF-8"?> <data>     <employee>       ...

Example of XSLT document conversion

<?xml version="1.0" encoding="UTF-8"?> <xs...

Example of how to convert an XML document into an HTML webpage

<?xml version="1.0" encoding="UTF-8"?> <?xm...

Example of deep copy with XSLT

Copy.xml <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="copy.xsl"...

Example of shallow copy with XSLT

Copy.xml <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="copy.xsl"...

Example of how to use <xsl:element>

ElementAdd.xml <?xml version = "1.0" encoding = "UTF-8"?> <factory>     <ite...

Example of how to use <xsl:attribute>

AttributeAdd.xml <?xml version = "1.0" encoding = "UTF-8"?> <factory>     <i...

Example of XML working with CSS

StyleDemo.css <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/css" href="game.css&...

Example of adding style sheets to XML

<?xml-stylesheet href=”default.css”?> <?xml-stylesheet href=”style1.css” title=”styleType1” type=”text/css”?>

Examples of proper syntax of stylesheets in XML

sports{    display:block; } game{     text-transform: uppercase;  &...