Respuesta de referencia
First, the browser parses the URL to determine the protocol (e.g., HTTP or HTTPS), domain name (e.g., example.com), and path (e.g., /index.html). The browser then performs a DNS lookup to find the IP address associated with the domain name. The browser establishes a connection to the server at that IP address, sending an HTTP request for the specified resource. The server processes the request and sends back an HTTP response containing the requested data (HTML, CSS, JavaScript, images, etc.), which the browser then renders to display the webpage. If the request is HTTPS, an SSL/TLS handshake occurs to establish a secure connection before the HTTP request is sent. Any redirects will be followed during this process, issuing additional requests as necessary until the browser receives a final response it can display.