HTML Hyperlinks

By: Prof. Dr. Fazal Rehman | Last updated: March 3, 2022

What is a hyperlink?

A link to some web page. If we click on the hyperlink, then the page associated with this hyperlink is open.

How to put the hyperlinks in HTML?

Download code There are two methods;
  1. Relative path
  2. Absolute path
Relative path: need to put both files in one folder, so there is no need to put the full path indicating that there is a file located. For example <a href=”b.html”>Click here</a> Relative Path Example: Step 1: Store all the web pages in the same folder how to link a web page in html

Step 2: Write the code for the first page

hyperlink in a web page html
Step 3: Check the output
links in html
Step 4: Write the code for the second page
                          hyperlinks to html

Step 5: Check the output

hyperlinking in arabic           Step 6: Open the page 1 and click on the link below links in html Step 7: New page appears hyperlinking in arabic
Can I put the image in a separate folder and code file in the separate folder? Yes, you can but you need to put the absolute path. What is the absolute path? An absolute path is a full path indicating that where is the file located. For example Suppose;
  • your image name is 1
  • Your image type is jpg
  • Your image is in folder (images)
Then we can put the code as follows:  <img src=”images/1.jpg” /> More examples of absolute path
  • <a href=”folder1/b.html”>Click here</a>
  • <a href=”folder1/folder2/b.html”>Click here</a>
  • <a href=”../b.html”>Click here</a>
  • <a href=”../../b.html”>Click here</a>
  hyperlinks html hyperlinking in hypext markup language

Video Lecture

Leave a Comment

All Copyrights Reserved 2025 Reserved by T4Tutorials