In this article, we will see what is Difference between absolute and relative URL in HTML.
Basically, There are two types of URLs:
1. Absolute URL
2. Relative URL
What is Absolute URL?
In Which the full directory path is included with a domain name or root folder name.
When the domain or root folder is different, this method is typically applied.
Example:
<img src="www.example.com/assets/logo.png" height="300" width="200"/>
What is a Relative URL?
In which only the file path is included without the domain name or root folder name.
utilized most often when the domain or root folder is the same.
<img src="assets/logo.png" height="300" width="200"/>
Leave a Comment
Share Your Thoughts