How Does the World Wide Web Work?
How the WWW Works
The Web has five working parts:
- HTTP, the rules that move pages from servers to your browser.
- HTML, the language that builds web pages.
- URLs, the addresses of pages (for example,
https://wikipedia.org). - Web browsers like Chrome, Firefox, and Safari that display the pages.
- Web servers that store the pages and send them when a browser asks for them.
The World Wide Web is built on a small set of clear ideas. This article covers them twice: a one-line plain-language summary first, then a fuller breakdown of what each piece actually does.
For the history of the Web (Tim Berners-Lee, CERN, 1989, Mosaic), see WWW History. For the basic definition and examples, see What is WWW?.
The Five Core Technologies, in Plain Language
A quick, one-line description of each:
- HTTP, the rules that move pages from servers to your browser.
- HTML, the language that builds web pages.
- URLs, the addresses of pages (for example,
https://wikipedia.org). - Web browsers like Chrome, Firefox, and Safari that display the pages.
- Web servers that store the pages and send them when a browser asks for them.
That is the whole picture in five lines. The next section explains each piece in a little more detail.
How Does the WWW Work?
The WWW works through five core technologies. Each one has a clear job.
Web Browsers Web browsers, such as Chrome, Firefox, and Safari, let users visit and use websites. A browser is the interface between the user and the World Wide Web.
Hypertext Transfer Protocol (HTTP) HTTP is the protocol used to move data between web servers and browsers. It makes sure webpages load correctly on a user’s device.
- URLs (Uniform Resource Locators)
Every webpage has a unique URL, which is its address on the web. Common examples are
https://www.google.com,https://www.wikipedia.org, andhttps://www.youtube.com.
- HTML (Hypertext Markup Language) Webpages are built using HTML. HTML controls how content looks on screen, including text, images, links, and multimedia.
- Web Servers Web servers store website data. When a browser requests a page, the server sends the content back to the user.
Web Browsers, HTTP, URLs, HTML, and Web Servers
- Browsers display pages
- HTTP moves data
- URLs are page addresses
- HTML builds page content
- Web Servers store and send data
Three parts:
https://— the protocol (the secure version of HTTP).www.— the subdomain that points to the web service of this site.wikipedia.org— the domain name, which identifies the site itself.
A browser uses the URL to find the right web server and ask it for the page.
How was this article?