Internet vs WWW

Most people use "internet" and "World Wide Web" (WWW) as if they mean the same thing. They do not. The internet is a global infrastructure of connected networks. The World Wide Web is one service that runs on top of that infrastructure. This distinction is important and surprisingly simple once you see it clearly.

The Container and the Contents

┌────────────────────────────────────────────────────┐
│               THE INTERNET                         │
│   (global infrastructure: cables, routers, TCP/IP) │
│                                                    │
│   ┌──────────────────────────────────────────┐     │
│   │      World Wide Web (WWW)                │     │
│   │      (websites, web pages, HTML)         │     │
│   └──────────────────────────────────────────┘     │
│                                                    │
│   Also running on the internet:                    │
│   • Email (SMTP/POP3/IMAP)                         │
│   • File Transfer (FTP)                            │
│   • Video Calls (WebRTC, proprietary protocols)    │
│   • Online Gaming (UDP-based protocols)            │
│   • Streaming (RTMP, HLS, DASH)                    │
│   • VoIP calls (SIP, RTP)                          │
└────────────────────────────────────────────────────┘

The internet is the road network. The WWW is one type of vehicle — a very popular one — that travels on those roads. But email, video calls, and online games are other vehicles using the same roads.

What is the Internet?

The internet is the global physical and logical infrastructure that connects billions of devices. It includes:

  • Undersea and underground fibre optic cables
  • Routers and switches that direct traffic
  • Internet Exchange Points (IXPs)
  • The TCP/IP protocol suite that governs how data travels
  • IP addresses that identify every connected device

The internet was born from ARPANET, a US military research project started in 1969. By the late 1980s, it connected universities and research institutions worldwide. It became publicly accessible in the early 1990s.

What is the World Wide Web?

The World Wide Web is a system of interlinked documents (web pages) and resources, connected by hyperlinks and URLs, that you access through a web browser. It was invented by Sir Tim Berners-Lee in 1989 while he worked at CERN in Switzerland.

Berners-Lee proposed a way for researchers to share information easily using three core technologies:

  • HTML (HyperText Markup Language): The language for writing web pages.
  • URL (Uniform Resource Locator): The address system for finding pages (e.g., https://www.estudy247.com/topic1).
  • HTTP (HyperText Transfer Protocol): The rules for requesting and sending web pages between browser and server.

A Concrete Comparison

Scenario                         │ Uses Internet? │ Uses WWW?
─────────────────────────────────┼────────────────┼──────────
Browsing a website               │     Yes        │   Yes
Sending an email                 │     Yes        │   No
Making a WhatsApp call           │     Yes        │   No
Downloading a file via FTP       │     Yes        │   No
Opening Google.com in Chrome     │     Yes        │   Yes
Streaming Netflix                │     Yes        │   No (proprietary protocol)
Playing an online game           │     Yes        │   No

URLs: The Address System of the Web

A URL (Uniform Resource Locator) is the full address of a specific resource on the web. Every web page has its own unique URL.

https://www.estudy247.com/computer-fundamentals/topic1.html
  │        │               │                    │
  │        │               │                    └── File/page name
  │        │               └── Path (folder structure on the server)
  │        └── Domain name (identifies the website)
  └── Protocol (HTTPS = secure HTTP)

Parts of a Domain Name

www  .  estudy247  .  com
 │          │          │
 │          │          └── Top-Level Domain (TLD)
 │          │              (.com, .org, .in, .edu, .gov)
 │          └── Second-Level Domain (the actual website name)
 └── Subdomain (www is the web server subdomain; others possible: mail., app.)

How a Web Page is Built

Every web page you see in a browser is built from three core technologies:

HTML (Structure)

HTML defines what is on the page — headings, paragraphs, images, links, tables, and forms. It is the skeleton of every web page.

CSS (Appearance)

CSS (Cascading Style Sheets) defines how the HTML elements look — colours, fonts, sizes, spacing, and layout. Without CSS, every web page would look like a plain text document.

JavaScript (Behaviour)

JavaScript makes web pages interactive — dropdown menus, form validation, live search suggestions, animations, and dynamic content updates without reloading the page all use JavaScript.

Web Page = HTML (what) + CSS (how it looks) + JavaScript (how it behaves)

Web Browsers

A web browser is the application you use to access the WWW. It sends HTTP requests to web servers, receives HTML/CSS/JavaScript in response, interprets it, and renders the visual page you see.

Browser Request Flow:
You type URL → Browser asks DNS for IP → Browser connects to web server
→ Server sends HTML/CSS/JS → Browser renders the page visually

Popular browsers include Google Chrome, Mozilla Firefox, Microsoft Edge, Safari, and Opera. All browsers follow the same web standards (HTML, CSS, JS) but may display pages with minor visual differences due to their different rendering engines.

Web Servers

A web server is a computer running server software (like Apache, Nginx, or Microsoft IIS) that stores web pages and sends them to browsers on request. When you visit a website, the server receives your request, finds the correct files, and sends them back.

Large websites use hundreds or thousands of servers distributed across the world in data centres. A content delivery network (CDN) stores copies of popular content on servers close to users, reducing latency and speeding up page loads.

Web vs Internet: The Historical Context

The internet existed for over 20 years before the World Wide Web. Scientists and researchers used the internet in the 1970s and 1980s for email, file transfers, and remote computer access — long before anyone browsed a website.

Tim Berners-Lee created the Web in 1989–1991. The first web browser available to the public (NCSA Mosaic) launched in 1993. The Web's easy-to-use graphical interface drove the explosive growth of public internet use in the mid-1990s, which is why many people incorrectly assume the two are the same thing.

Key Takeaways

  • The internet is the global infrastructure of connected networks — cables, routers, and protocols.
  • The WWW is a service that runs on the internet — a system of interlinked web pages accessed with a browser using HTTP.
  • Email, video calls, online gaming, and file transfers use the internet but not the WWW.
  • Every website has a URL. URLs use HTTP or HTTPS. Web pages are built with HTML, CSS, and JavaScript.
  • The internet was born in 1969. The WWW was created in 1989 and went public in 1991.

Leave a Comment

Your email address will not be published. Required fields are marked *