Another Thought

Is there a way to use the following code for a horizontal menu, but with two items being drop downs?

<p align=“center”>

<a href=“index.html”>Home</a>  
<a href=“Introduction.html”>Introduction</a>  
<a href=“Aboutme.html”>About Me</a>  
<a href=“goodole.html”>Articles</a>  
<a href=“Photos.html”>Photos</a>  
<a href=“Research.html”>Research</a>  
<a href=“Equipment.html”>Equipment</a>  
<a href=“Coinhunting.html”>Coin Hunting</a>  
<a href=“Clubs.html”>Clubs</a>  
<a href=“Scattershooting.html”>Scattershooting</a>  
<a href=“Malamute.html”>Malamute Saloon</a>  
<a href=“Latest.html”>Latest News</a>  
<a href=“Gourmand.html”>Poor Gourmand</a>  
<a href=“Link.html”>Links</a>  
<a href=“Books.html”>Recommended Reading</a>  
<a href=“http://users3.smartgb.com/g/g.php?a=s&i=g35-69865-a1”>Guest Book</a></p>

<center>

You need to indicate hierarchy. The way to do this is with a nested list structure.

<ul>
<li><a href=“index.html”>Home</a>
<ul>
<li><a href=‘’>Link</a></li>
<li><a href=‘’>Link</a></li>
</ul>
</li>
<li><a href=“Introduction.html”>Introduction</a></li>
</ul>