I'm writing a code for my website in html.when I use < a tag as below its not working (bad).
<div id="column">
<div class="subnav">
<li><a href="Introduction To File.html">Introduction To File</a></li>
<li><a href="File Access Mode.html">File Access Mode</a></li>
<li><a href="Error in opening file.html">Error Handling</a></li>
<li><a href="#">Closing File</a></li>
<li><a href="End of file.html">End of File</a></li>
<li><a href="fcloseall() vs exit().html">fcloseall() vs exit()</a></li>
<li><a href="getchar() and putchar().html">getchar() and putchar()</a></li>
<li><a href="getc() and putc().html">getc() and putc()</a></li>
<li><a href="fputc() and fgetc().html">fputc() and fgetc()</a></li>
<li><a href="fgets.html">fgets()</a></li>
</div>
</div>
NOTE: when I click on Introduction To File i am not sent to Introduction To File.html page(bad) but, when i insert
<div class="clear"></div>
then i m sent to Introduction To File.html page and the problem is after adding "clear" some unwanted space seems to be added which is bad.
Please help to find where i went wrong?
or