<?xml version="1.0" ?>
   <xsl:stylesheet version="1.0"
              xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- xmlns:xsl="http://www/w3/org/TR/WD-xsl" for most versions of Internet Explorer 5 -->

    <xsl:template match="icecream">
     <html>
     <head>
       <title> J Bouhall Homework 4 </title>
      </head>
       <body>
           <font color="#FF00FF"><H1><xsl:value-of select="flavor"/></H1></font>
           <font color="#FF00FF"><H1><xsl:value-of select="price"/></H1></font>
       </body>
       </html>
     </xsl:template>
    </xsl:stylesheet>

