Published by Patrick Mutisya · 14 days ago
Know and understand the functionality of Internet Service Providers (ISPs), the structure of a web address, Uniform Resource Locators (URL), hyperlinks and web browsers.
An ISP is a company that provides individuals and organisations with access to the Internet and related services.
A web address, or URL, is made up of several distinct parts that tell a browser how to locate a resource.
| Component | Example | Purpose |
|---|---|---|
| Protocol | https:// | Specifies the communication method (e.g., HTTP, HTTPS, FTP). |
| Subdomain | www. | Optional prefix that can identify a specific service or server. |
| Domain name | example | Human‑readable name registered with a domain registrar. |
| Top‑level domain (TLD) | .com | Indicates the category or country of the domain. |
| Port (optional) | :443 | Specifies a particular network port; default ports are assumed if omitted. |
| Path | /folder/page.html | Points to a specific file or resource on the server. |
| Query string (optional) | ?id=25&type=student | Passes parameters to the server‑side script. |
| Fragment (optional) | #section2 | Directs the browser to a specific part of the page. |
The URL is the complete address that a web browser uses to retrieve a resource.
http:// or https://).A hyperlink (or link) connects one web page to another, or to a different part of the same page.
<a> element.<a href="URL">Link text</a>._blank for a new tab).A web browser is software that interprets HTML, CSS, JavaScript and other web technologies to display web pages.
| Function | Description |
|---|---|
| Render HTML/CSS | Transforms markup into a visual layout. |
| Execute JavaScript | Enables interactive features and dynamic content. |
| Manage sessions | Stores cookies, cache and browsing history. |
| Security | Implements HTTPS, warns about unsafe sites, and isolates content (sandbox). |
| Navigation controls | Address bar, back/forward buttons, refresh, bookmarks. |
<a> tag.