Home

Chapter 5: Linking

Topics we are going to learn in this page:

  1. a (anchor tag)
  2. href attribute(hyperlink reference)
  3. target attribute

Explantion of the topics:

  1. a

  2. href attribute

  3. target attribute

  4. Example:

    1. Eg1 (URL):
      Code:

          <a href="https://google.com">Google</a>
          <a href="https://www.youtube.com/">YouTube</a>
                          

      Output

      Google YouTube




    2. Eg2 (HTML file):
      Code:

          <a href="../index.html">Home Page</a>
                          

      Output

      Home Page




    3. Eg3 (phone number):
      Code:

          <a href="tel:+123456789">+123456789</a>
                          

      Output

      +123456789




    4. Eg4 (Email):
      Code:

          <a href="mailto:example@gmail.com">Email Id</a>
                          

      Output

      Email Id




    5. Eg5 (Selecting HTML element of same page):
      Code:

          <a href="#main_heading">Go to Top</a>
                          

      Output

      Go to Top