DEV Community

Wings Design Studio
Wings Design Studio

Posted on

What Happens When You Type a URL in Your Browser?

When you type a URL into a web browser like Google Chrome or Mozilla Firefox, the page does not appear instantly. Behind the scenes, several network and browser processes occur before the website is displayed.

Understanding this process helps developers learn how browsers, servers, and the internet work together.

In this guide, we will explain step by step what happens when you enter a URL in a browser.

1. URL Parsing

The first step is URL parsing. The browser analyzes the address you entered.

Example URL

https://example.com/page

The browser breaks it into several components:

  • Protocol: HTTPS
  • Domain: example.com
  • Path: /page

The protocol tells the browser which communication method to use.

2. DNS Lookup

Computers communicate using IP addresses instead of domain names. Therefore, the browser must convert the domain name into an IP address.

This process is handled by the Domain Name System.

Example

example.com → 93.184.216.34

Before contacting external DNS servers, the browser checks several caches:

  • Browser cache
  • Operating system cache
  • Router cache
  • DNS server

Once the IP address is found, the browser knows where the website server is located.

3. Establishing a TCP Connection

After finding the IP address, the browser creates a connection with the server using Transmission Control Protocol.

This process involves a three-way handshake:

  • Client sends a SYN request
  • Server replies with SYN-ACK
  • Client responds with ACK

After this handshake, a reliable connection is established between the client and server.

4. TLS Handshake for Secure Connections

If the website uses HTTPS, the browser performs a security process using Transport Layer Security.

During this step:

  • The server provides its SSL certificate
  • The browser verifies the certificate
  • Encryption keys are exchanged

This ensures that communication between the browser and the server is encrypted and secure.

5. Sending the HTTP Request

After the connection is established, the browser sends a request using Hypertext Transfer Protocol.

Example request

GET /page HTTP/1.1
Host: example.com

This request asks the server to send the webpage.

6. Server Processing the Request

The server receives the request and processes it.

Web servers such as Nginx or Apache HTTP Server handle incoming requests.

The server may:

  • Serve static files
  • Execute backend code
  • Query a database
  • Generate dynamic content

7. Server Response

Once processing is complete, the server sends a response back to the browser.

Example response

HTTP/1.1 200 OK
Content-Type: text/html

The response contains the HTML document that represents the webpage.

8. Browser Rendering Process

After receiving the HTML, the browser begins rendering the webpage.

This process includes:

  • Parsing HTML to create the DOM
  • Downloading CSS files
  • Building the CSSOM
  • Executing JavaScript
  • Combining everything to render the page layout

JavaScript execution may be handled by engines like the V8 JavaScript engine.

9. Loading Additional Resources

Most modern webpages require additional resources such as:

  • Images
  • Fonts
  • Stylesheets
  • JavaScript files

The browser sends additional HTTP requests to retrieve these resources before the page is fully rendered.

Final Thoughts

Typing a URL in a browser triggers a complex chain of events involving DNS resolution, network communication, server processing, and browser rendering.

Even though these steps involve multiple technologies and protocols, the entire process typically happens within milliseconds, allowing users to access websites almost instantly.

Understanding how browsers load webpages is an important concept for web developers and anyone interested in how the internet works.

Top comments (0)