Avatar of rayskelton
rayskelton

asked on 

XSL Style sheet for XML data file displaying bullet points after table


Add bullet point style to botton of XSL style sheet for XML data
Bookmark:
Question: XML and XSL style sheet

I have an XSL style sheet that looks good and reads the xml data, displaying in a table appropriately. After the table is displayed, I would like to display more info in a bullet point style at the end of the page. How do I do this?

<xsl:template match="/">
        <html>
            <head>
                <title>Title</title>
            </head>
            <body>
                <h1>H1 info</h1>
                <h4>h2 info</h4>
                <xsl:apply-templates />
            </body>
        </html>
    </xsl:template>

   Body with table info read from XML file

   New bullet point info from XSL file
JavaContent ManagementInternet Protocols

Avatar of undefined
Last Comment
CEHJ

8/22/2022 - Mon