ఒక URL టైప్ చేయడం network steps గొలుసును ప్రారంభిస్తుంది: browser server IP address కనుగొంటుంది, దానికి ఒక connection తెరుస్తుంది, ఒక HTTP request పంపుతుంది, response అందుకుంటుంది, మరియు page render చేస్తుంది. https://example.com కోసం end-to-end ప్రవాహం ఇదీ:
You type https://example.com
│
▼
1. URL PARSE split scheme (https) + host (example.com) + path (/)
│
▼
2. DNS example.com ──▶ 93.184.216.34 (resolve name → IP)
│
▼
3. TCP 3-way handshake to 93.184.216.34:443 (open connection)
│
▼
4. TLS handshake: verify certificate + agree on keys (encrypt)
│
▼
5. HTTP GET / HTTP/1.1 Host: example.com (send request)
│
▼
6. RESPONSE 200 OK + HTML (server replies)
│
▼
7. RENDER parse HTML → fetch CSS/JS/images → build DOM → paint
