Link Tag

Next ❯Grouping Tags

To insert links or can say hyperlinks in you web page to refer any other related urls

  • Used to redirect from your page to another web page, to provide more useful information to the end-user
  • Tag is: <a>
Tag:
  • label_outlineLink Tag <a>
    <!DOCTYPE html>
    <html>
      <head><title>Hyperlink Example</title></head>
      <body>
        <a href="http://YourSiteName.xyz">Your Site Name</a><br>
    
        <!--Also used to email-->
        <a href="mailto:example@viztro.xyz">Send Email</a>
      </body>
    </html>

    Output:

    Your Site Name
    Send Email
    • Use to create Hyperlinks or Email-links in your web page
    • When user clicks on Hyperlinks, it will redirect to web page written inside "href" Attribute
    • When user clicks on email-links, it launches an Email Client (like Outlook) installed on user's computer or device
Browsers Supports
SafariMicrosoft EdgeMozilla FirefoxChromeOpera Mini

Click on the above icon to see the name of the browser !

  • Tips! Always try to use latest version of browser

  • Grouping Tags
❮ Prev Computer Code
Next ❯Grouping Tags
TryOut Examples"Learn to Explore..!"

TryOut Editor

receipt