<?xml version="1.0" ?> 
<HTML xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<HEAD><TITLE>Best Buy Inventory </TITLE></HEAD>
<BODY STYLE="font-family:Arial, helvetica, sans-serif; font-size:12pt; background-color:#ff66ff">
 <xsl:for-each select="Computers/Type">
    <H1><xsl:value-of select= "Name"  /></H1>
    <DIV STYLE="background-color:teal; color:white; padding:4px">
    <SPAN STYLE="font-weight:bold; color:white">
      <xsl:value-of select="Speed" />   
    </SPAN>
     -- Only
     <SPAN STYLE="font-style:italic"> 
       <xsl:value-of select="Price" />
    </SPAN>
    </DIV>
<BR></BR>
<BR></BR>
</xsl:for-each>
<P>Buy a computer today!</P>
</BODY></HTML>