You don't show exactly what you need but something like this:
Code:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:jb="www.jb.com">
<xsl:template match="/">
<html>
<head/>
<body>
<xsl:apply-templates select="jb:Book/jb:Chapter/jb:Sec1/jb:Para/jb:graphic"/>
</body>
</html>
</xsl:template>
<xsl:template match="jb:graphic">
<img src="{@href}" width="{@width}" height="{@height}" />
</xsl:template>
</xsl:stylesheet>
--
Joe (
Microsoft MVP - XML)