<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
    <html>
      <body>
        <h2>XSLT Example</h2>
        <ul>
          <li>Item 1</li>
          <li>Item 2</li>
        </ul>
        <xsl:apply-templates select="details"/>
      </body>
    </html>
  </xsl:template>
  <xsl:template match="details">
    <div>
      <h3>Details</h3>
      <xsl:for-each select="item">
        <p><xsl:value-of select="."/></p>
      </xsl:for-each>
    </div>
  </xsl:template>
</xsl:stylesheet>
