<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<HEAD>
<link rel="stylesheet" href="../css/content.css" type="text/css"/>
<title>Test</title>
</HEAD>
<BODY>

<div style="position:absolute;top:20%;left:20%;">
<h1>These links are not all active.</h1>
<h3>Hover over each link to get more information.</h3>
<ul style="line-height:1.7;">
<li><a href="anyfile.xml" title="This could be your home page - added to all XML's">Your home page?</a></li>
<xsl:apply-templates select="CODEHELP/NAVIGATE" />
<h4>These next links are active</h4>
<li><a href="../links/index.html" title="Link to html, xml, shtml, use relative as well as absolute links">Links</a></li>
<li>Return to the <a href="../index.html" title="Home page">CodeHelp home page</a> here.</li>
<li>Go back to the <a href="seventh.xml" title="test files page">previous file</a> here.</li>
</ul>
</div>

</BODY>
</html>
</xsl:template>
<xsl:template match="CODEHELP/NAVIGATE">
<li>
<a>
<xsl:attribute name="href">
<xsl:value-of select="FILE"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:value-of select="DESC"/>
</xsl:attribute>
<xsl:value-of select="CLICK"/>
</a>
</li>
</xsl:template>

</xsl:stylesheet>







