<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<div id="navigation" style="background-color:black; width:100px">
<xsl:for-each select="navigation/link">
<a href="how to extract link from xml"><xsl:value-of select="name"/></a>
</xsl:for-each>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
so, inside my xsl file, I want to be able to extract the vale of link element from my xml file. can anyone please direct me on how to do this? thank you!