Please note, this is a STATIC archive of website technosmarter.com from 20 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
 

HTML Link | hyperlink code in HTML


HTML links specify the root to jump one page to another document. HTML links known as Hyperlinks.

Links are available on the pages of every document to move one document to another page -

You can use another web server link.
The following example of the link will show you how to link a hyperlink on a page.

Hyperlink


<!DOCTYPE html>
<html>
<head>
<title>Type of Heading Tags </title>
</head>
<body>
<a href="HTML-table.html">HTML Table Attributes</a>
</body>
</html>
Run

Note- 1. You can specify the another web server link .


<a href="https://www.google.com/">Jump to another web server </a>


Note- 2.Link to images - Specify the link background the image. When someone clicks on the image then jump to another page.


<a href="HTML-table.html"><img src="myimage.jpg></a>


Note- 3. Link to button- You can link the button if someone clicks on the button then jump to another page.



<a href="HTML-table.html"> <input type="button"> </a> 

Please Share

Recommended Posts:-