<?xml version="1.0"?>

<!-- Using Explicit Namespace to target elements -->

<xsl:stylesheet version='1.0' 
		xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
		xmlns:abc='http://whatever.com' > 

	<xsl:template match='/' > 
		<html>
		<head>
		<title>Using Explicit Namespace</title>
		</head>
		<body>
		With namespace, in italic.......: <i>
			<xsl:value-of select="addrbook/abc:entry/abc:name" /> 
		</i>
		<hr/>
		Without namespace, in bold..: <b>		
			<xsl:value-of select="addrbook/entry/name" />
		</b>
		<hr/>
		</body> 
		</html> 
	</xsl:template> 
</xsl:stylesheet>