Web Concepts: URLs, Hyperlinks, Browsers and Servers

CSEC IT: The World Wide Web

Essential Understanding: The World Wide Web (WWW) is an information system where documents and resources are linked by URLs and hyperlinks, accessible via the Internet. It is crucial to understand the roles of browsers, servers, and the protocols that secure them.

🔑 Key Skill: Dissecting URLs
📈 Exam Focus: Internet vs. WWW
🎯 Problem Solving: Link Types

The Internet vs. The World Wide Web

While often used interchangeably, these two terms describe different layers of the digital world.

Feature The Internet The World Wide Web (WWW)
Definition The global infrastructure of networks (cables, routers, satellites). A system of interlinked documents (web pages) running on top of the Internet.
Analogy The road/highway network connecting cities. The trucks (services) driving on the road delivering packages.
Scope Encompasses Email, FTP, Chat, and more. Specific to HTML/HTTP-based information accessed via Browsers.

Core Web Components

The Web functions through the interaction of four main components.

🌐
📮

URL (Uniform Resource Locator)

Definition: The unique address used to locate a specific resource on the Internet.

Structure:

  • Protocol: e.g., http:// or https://
  • Domain Name: e.g., www.cxc.org
  • Path: e.g., /resources/pastpapers.html
🌍
🖥️

Web Browser (Client)

Definition: Software used to access and view web pages.

Role:

  • Sends HTTP requests to servers.
  • Renders HTML/CSS into visual pages.
  • Examples: Google Chrome, Mozilla Firefox, Microsoft Edge, Safari, Opera.
🖥️
🗄

Web Server

Definition: A computer that stores web pages and delivers them to clients.

Role:

  • Connected permanently to the Internet.
  • Runs specialized software (e.g., Apache, IIS, Nginx).
  • Responds to requests for files.

HTTP vs HTTPS

Security is a major concern on the Web. The protocol used determines if data is safe or exposed.

🔓
⚠️

HTTP

HyperText Transfer Protocol

Security: Unencrypted. Data sent in plain text.

Usage: Suitable for public information, news, or blogs.

Risk: Hackers can intercept passwords or credit card info.

🔒
🛡️

HTTPS

HyperText Transfer Protocol Secure

Security: Encrypted (SSL/TLS). Data scrambled.

Usage: Mandatory for banking, email login, e-commerce, and CSEC portals.

Indicator: Look for the "Padlock" 🔒 icon in the browser bar.

🔎

Anatomy of a URL

Objective: Click on the colored segments of the URL below to see what they do.

👆 Click "Start Lab" below
https://www.csechub.com/courses/it/page1.html

Hyperlinks: Absolute vs. Relative

When creating websites, developers choose between Absolute and Relative links. Absolute links include the full protocol and domain (e.g., http://site.com), while Relative links point to files on the same server (e.g., contact.html). Relative links are preferred for internal navigation because they keep working even if the domain name changes.

CSEC Practice Arena

Test Your Understanding

1
Which statement correctly describes the difference between the Internet and the WWW?
They are the same thing
The Internet is part of the WWW
The Internet is the infrastructure; WWW is a service on it
The WWW is the hardware; Internet is the software
Explanation: The Internet is the physical network (cables, routers). The WWW is the collection of web pages that runs on top of that network.
2
Which URL part identifies the protocol used to transfer data?
www.cxc.org
https://
/exams
index.html
Explanation: The Protocol (e.g., http:// or https://) comes first in the URL and tells the browser the rules for retrieving the data.
3
Which type of hyperlink would you use to link from page1.html to page2.html in the same folder?
Absolute Link
Relative Link
External Link
Anchor Link
Explanation: Relative Links do not repeat the full domain name. They are shorter and easier to maintain for pages on the same site.
4
What is the MAIN difference between HTTP and HTTPS?
HTTPS is faster
HTTPS encrypts data for security
HTTP requires a password
They are the same
Explanation: HTTPS (HyperText Transfer Protocol Secure) uses encryption (SSL/TLS) to protect sensitive data (like passwords) from being intercepted. HTTP does not.
5
Which software is responsible for displaying the web page to the user?
Web Server
DNS Server
Web Browser
ISP Modem
Explanation: The Web Browser (Client) requests the code and then renders (draws) it visually on the screen.
6
Which of the following is a common Web Browser?
Mozilla Firefox
Microsoft Outlook
FileZilla
Apache Tomcat
Explanation: Firefox is a standard Web Browser. Outlook is an Email Client, FileZilla is FTP, and Apache is Server Software.
🎯

CSEC Examination Mastery Tip

Describing the Web Ecosystem: In a written answer, ensure you mention the relationship:

  1. Infrastructure: The Internet (The Roads).
  2. Service: The WWW (The Traffic).
  3. Address: The URL (The House Number).
  4. Software: The Browser (The Viewer) and Server (The Source).
  5. Connection: Hyperlinks (The Bridges between documents).
  6. Security: HTTPS vs HTTP (The Lock on the door).
Scroll to Top