Take the example https://blog.example.com:443/articles?id=7#top. In it we can identify the scheme (https), the domain (blog.example.com), the port (443), the path (/articles), the query parameters (?id=7) and the anchor (#top). The browser turns the domain from the URL into an IP address by looking up the A record in DNS.
Once it has parsed the address, the browser goes through several steps:
This entire path from the address bar to a finished page is covered in the article How a browser works.