ஒரு URL ஐ தட்டச்சு செய்வது தொடர்ச்சியான network படிகளைத் தொடங்கி வைக்கிறது: browser server-இன் IP address ஐக் கண்டறிகிறது, அதற்கு ஒரு connection திறக்கிறது, ஒரு HTTP request அனுப்புகிறது, response பெறுகிறது, பின்னர் page ஐ render செய்கிறது. https://example.com-க்கான end-to-end flow இதோ:
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
