Just output html tags : html output « XSLT stylesheet « XML Tutorial






File: Data.xml

<?xml version="1.0"?>
<fragment>2001</fragment>

File: Transform.xslt
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">
  <xsl:output indent="yes" />
  <xsl:template match="/">
    <html>
      <head>
        <title>Contact Info</title>
      </head>
      <body
        style="font-size:12px; font-family: Verdana, Arial, Helvetica;">
        contact me
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

Output:

<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      <title>Contact Info</title>
   </head>
   <body style="font-size:12px; font-family: Verdana, Arial, Helvetica;">
              contact me
            
   </body>
</html>








5.3.html output
5.3.1.Use tag to format xml element
5.3.2.Use different font style to format element
5.3.3.Output to a list
5.3.4.Just output html tags
5.3.5.Output entity
5.3.6.Output one type of HTML tags per template
5.3.7.Use html to format xml document
5.3.8.Format xml with html
5.3.9.Format html output with CSS