Link On Own Page - Correct Code

Hi,

I am trying to link to a location on a page using an id however whatever code I try it adds a link affect to the target.

The “Contact Us” below has a link affect, can anyone advise how to link to text but not add an affect?

<a id="contact" class="links" >
<div class="indexmainintro">
		Contact Us
</div>
</a>

<div class="indexmainintro">
<a id="contact" class="links" >
		Contact Us
</a>
</div>

You should be coding the destination like this (without the <a> tag):

<div class=“indexmainintro links” id=“contact”>Contact Us</div>

Brilliant cheers mate.