musicmancanora4 0 Light Poster

Hey guys with regards to <xsl:value-of select="Catalog/Product_Type/Name"> how would
i put that in a <h1> html tag which is defined in my css file.

<h1><xsl:value-of select="Catalog/Product_Type/Name"></h1>

i get errors in xalan when i do that? The results of the value-of select i want it
to be in a different font which is defined as <h1> in my css.

<xsl:template match="/">
	<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<title>
			Phil's Bike Store
		</title>
<link href="Store.css" rel="stylesheet" type="text/css"/>
	</head>

	<body>
			
	<h1>Phil's Bike Store</h1>

	
	<p>
	<a href="#Road Bikes">Road Bikes</a>|
        <a href="#MTB Bikes">MTB Bikes</a>	
	<a href="#clothing">clothing</a>    |
	<a href="#Lights">Lights</a>        |
	<a href="#Parts and Accesories">Parts andAccesories</a>
	</p>
				
				
        <xsl:value-of select="Catalog/Product_Type/Name">
	</xsl:value-of>
				
				
	</body>
	</html>

		
	</xsl:template>

</xsl:stylesheet>