I am a complete newbie to HTML after spending 5 yrs as a unix sysadmin.
I have generated a very basic index page which links to another set of files.
CODE
<html>
<head>
<title>Capacity Planning Distributed systems reports</title>
</head>
<body>
<img src="tntlogo.gif"/>
<h1>Capacity Planning Reports</h1>
<p>
The following links take you to the weekly reports.
</p>
<p>
<a href="RF">Top 20 RF scanners by depot </a>
</p>
<p>
<a href="Concount">Top 20 concounts by depot </a>
</P>
<p>
<a href="Pro">Top 20 proIV users by depot </a>
</P>
</body>
</html>
Now my RF / Concount / Pro areas just contain files I want to list , without using some javascript or similar , it there a way to use HTML to say display the directory listing or add another html page with a banner and a directory listing ?
