Hyperlink
A hyperlink refer to as link.It refers to linking to another web page or to a section in the same web page.The A(anchor) element is used to create a HYPERLINK.you can specify a text or an image as a hyperlink.
- You can click on a link and jump to another document.
- The <a> is used to provide the hyperlink
- This contains the href attribute.(href specify the URL of the web page to be linked or the value of the name attribute.)
Syntax
<a href="url">link text</a>
Example
<html><head>
<title>Hyperlink</title>
</head>
<body>
<p>Click following link</p>
<a href="https://www.mktutorial.in/">Click Me</a>
</body>
</head>
</html>
output
Click following link
Click Me