Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

is it possible to add xsl and css in same xml file

/*Add a link to your CSS file:*/

<xsl:template match="/">
    <html>
        <head>
            <link rel="stylesheet" href="path/to/your/css/file.css">
        </head>
        <body>
            <xsl:apply-templates select="Book"/>
        </body>
    </html> 
</xsl:template>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #add #xsl #css #xml #file
ADD COMMENT
Topic
Name
4+4 =