<?xml version='1.0' ?>

<html xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  <body style="background-color: #003; text-align: center; color: #fcc; font-family: sans-serif">
    <h1 style="font-size: 20px; text-align: center">List of Comics</h1>
    <xsl:for-each select="comics/comic">
      <div style="width: 300px; background-color: #336; border: 2px; border-color: #99c; border-style: solid; margin-bottom: 10px; padding: 6px">
        <span style="font-weight: bold"><xsl:value-of select="title"/></span>,
        <xsl:value-of select="subtitle"/>
        <div style="background-color: #fff; text-align:left; color: #000; margin: 3px; padding: 6px; font-size: 14px">
          <p style="font-style: italic">
          Published by <xsl:value-of select="company"/><br/>
          Pencilled by <xsl:value-of select="pencils"/><br/>
          Current price $<xsl:value-of select="price"/>
          </p>
          <p><xsl:value-of select="content"/></p>
        </div>
      </div>
    </xsl:for-each>
  </body>
</html>