<?xml version="1.0"?>

<!-- A document template but no other templates -->

<!-- The apply-templates will execute for each node in requested the node set -->

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

	<xsl:template match="/">
		<html>
		<head>
		<title>apply-templates</title>
		</head>
		<body>
			<xsl:apply-templates select="addrbook/entry/name" />
		<hr/>
		</body>
		</html>
	</xsl:template>	

</xsl:stylesheet>