URLs
URLs, or Uniform Resource Locators, are strings used to identify resources on the Internet and indicate how to access them. They encode the means of retrieving a resource, including the protocol to use and the location to reach. In practice, URLs enable software such as browsers and APIs to fetch, view, or manipulate resources without user guidance.
A typical URL has several parts. The scheme (or protocol) names the access method, for example http
Common schemes include http, https, ftp, mailto, file, and data. URLs are ubiquitous in web pages, APIs,
Resolution and access typically involve resolving the host via DNS, establishing a connection, and transferring data
Relation to URIs: a URL is a type of URI that locates a resource; the broader concept