HTML DOM Link Object | Link in HTML Object Tutorial by WDH

HTML DOM Link Object


HTML link code

How to write HTML link code.

HTML text link

<a href="link/html-text-link.htm">Text Link</a>

The code will create this link:

Text Link

HTML link to same page

Anchor link code:

<a href="#generator">Link code generator</a>

The code will create this link:

Link code generator

When pressing the link the browser will jump to the heading below, with this code:

<h2><a id="generator">Link code generator</a></h2>

HTML image link

<a href="link/link-image.htm"><img src="link/flower.jpg" width="82" height="86" alt="Flower"></a>

The code will create this link:

 

HTML e-mail link

<a href="mailto:name@rapidtables.com">Send Mail</a>

The code will create this link:

Send Mail

 

See: HTML mailto link.

HTML link to file download

<a href="link/test_file.zip">Download File</a>

The code will create this link:

Download File