What are the parts of URLSolutionURL Uniform resource locato
What are the parts of URL
Solution
URL (Uniform resource locator) as the name implies it is the thing that enables to identify a resource.In the context of web a resource is a webpage.So in this case a URL is used to identify the location of a webpage and fetch it.
Example : http://ABC.com/home.html
The first part of URL is the protocol identifier which gives the protocol used for communication with server.here it is http
Second part is domain name which gives the IP address of server to connect to .here it is ABC.com
The third part is the resource path in the server to access.here it is home.html
