Mega Code Archive

 
Categories / XML Tutorial / XSLT StyleSheet
 

Every XSL stylesheet must start with xsl

The attribute version='1.0' specifies version of XSL(T) specification.  File: Data.xml <em>Hello, world</em> File: Transform.xslt <?xml version="1.0"?> <xsl:stylesheet version="1.0"    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> </xsl:stylesheet>