Skip to content Skip to sidebar Skip to footer

Html Tags For Email And Link To Other Sections On Page

I am writing a HTML page and my requirements are as follows: HTML Page contains some email ID's and when clicked on those EmailID's... it should open new page of the outlook. Page

Solution 1:

For email address link

<ahref="mailto:youremailaddress">Email Me</a>

fore link navigation

http://www.w3schools.com/html/html_links.asp

more about navigation with in page : http://www.yourhtmlsource.com/text/internallinks.html

Solution 2:

Linking to sections:

<ahref="#sectionId">Go to X</a><h2id="sectionId">X</h2>

This way you can link to anything that has an ID, be it a header, a paragraph, a DIV or anything else.

Solution 3:

Try looking at tag (Anchor). You'll get what you need... mailto will suffice your e-mail needs and hash tags will solve the second one.

Solution 4:

This should do it:

<ahref="mailto:you@yourdomain.com">Email</a>

This should open the new window on your email client (outlook or whatever you have set).

Post a Comment for "Html Tags For Email And Link To Other Sections On Page"