• Hyperlinks in HTML are used to create clickable links that direct users to other web pages or resources.
• To create a hyperlink, you use the <a> tag, which stands for "anchor."
• Inside the <a> tag, you include the URL of the destination web page using the href attribute. For example, <a href="https://www.jtcindia.org">Visit Our Site</a> will create a link to the website "jtcindia.org."
• When users click on the hyperlink, their web browser will open the linked web page or resource.
• You can also use hyperlinks to link to other files within your website, like images, documents, or even specific sections of a page using anchor tags (<a href="#section">).
<!DOCTYPE html>
<html>
<head>
<title>HTML Hyperlink</title>
</head>
<body>
<h2>Hyperlink</h2>
<a href="https://www.jtcindia.org">Click here you will be redirected to JTC Home page</a>
</body>
</html>