<?xml version="1.0"?>

<!-- Value of -->

<!-- the value of only outputs the first node of a node set -->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

	<xsl:template match="/">
		<html>
		<head>
		<title>Value of</title>
		</head>
		<body>
			<xsl:value-of select="addrbook/entry/name" />
		<hr/>
		</body>
		</html>
	</xsl:template>	

</xsl:stylesheet>