Updates
  • Starting New Weekday Batch for Full Stack Java Development on 15 September 2025 @ 02:00 PM to 04:00 PM
  • Starting New Weekday Batch for MERN Stack Development on 29 September 2025 @ 04:00 PM to 06:00 PM
Join Course

HTML Hyperlinks

• 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>