Write a program that shows the elements of the stylesheets? - XSL

Write a program that shows the elements of the stylesheets?



- Stylesheet is used to design the website overall structure of look and feel and display it on the browser.

- It is represented using xsl:stylesheet element that resides in an XML document and it allows the stylesheet to be called in the beginning.

- xsl:transform is used to allow the transformation to take place and it can be used instead of xsl:stylesheet.

- The program used can be as follows:

<xsl:stylesheet
id = id
extension-element-prefixes = tokens
exclude-result-prefixes = tokens
version = number>
<!-- Content: (xsl:import*, top-level-elements) -->
</xsl:stylesheet>
Post your comment