Author:
WWW⚓︎
Introduction⚓︎
WWW (World Wide Web) is a tremendous distributed system of interlinked hypertext documents and multimedia.
Resources of WWW are distributed across millions of web servers worldwide.
WWW works with client-server architecture. Web browsers (clients) request resources from web servers, which respond by delivering the requested content
Goal of WWW⚓︎
WWW aims to address the following fundamental questions:
- How to locate and access resources on the web?
- How to ensure secure communication between web clients and servers?
- How to let different web browsers interpret and display web content correctly?
- How to deliver web content with high availability and performance?
Solution of WWW⚓︎
- For question 1, we use
URLto locate resources on the web. - For question 2, we use
HTTPprotocol to structure communication between web clients and servers. - For question 3, we use
HTML,CSS, andJavaScriptto define and render web content. - For question 4, we use
Proxy ServersandCookiesto optimize content delivery and enhance user experience.