Problem:
Describe what happens when you type a URL into your browser and press Enter.
- The browser's host resolution cache is checked if the website's IP is stored.
- If the IP is not found, a request is sent to the Domain Name Service (DNS) for the IP of the host/load balancing host.
- A HTTP GET request is sent to the host (server).
- The host responds with a payload (usually in HTML).
- Browser renders the received HTML.
- The browser sends requests for additional objects embedded in HTML (images, CSS, JavaScript) and repeats steps 3-4 to perform step 5.
- Once the page is loaded, the browser sends further asynchronous requests as needed.