<?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>
      <head>
        <title>My Playlist</title>
        <style>
          body { font-family: Arial, sans-serif; margin: 20px; }
          h2 { color: #333; }
          ul { list-style-type: disc; }
          li { margin: 5px 0; }
        </style>
      </head>
      <body>
        <h2>My Favorite Songs</h2>
        <ul>
          <xsl:for-each select="playlist/song">
            <li>
              <xsl:value-of select="title"/> by <xsl:value-of select="artist"/>
            </li>
          </xsl:for-each>
        </ul>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>