Internet Fundamentals Complete Guide: Web Basics, Evolution 1G to 4G & Essential ICT Terminology

Complete Guide to Internet Fundamentals: Web Basics, Evolution from 1G to 4G | ICT Lecture Notes

Complete Guide to Internet Fundamentals

Web Basics, Internet Evolution from 1G to 4G Networks, and Essential Internet Terminology
Internet Basics Web Technology 1G to 4G Evolution ICT Lecture Notes Internet Terminology Reading Time: 20 min

📜 Historical Background of the Internet

The development of the Internet spans several decades, with key milestones that transformed global communication:

  • 1962: J.C.R. Licklider conceives the idea of a "galactic network"
  • 1969: ARPANET, the precursor to the Internet, is established
  • 1972: Ray Tomlinson invents email
  • 1983: TCP/IP protocol becomes standard for ARPANET
  • 1989: Tim Berners-Lee develops the World Wide Web
  • 1994: The first graphical web browser (Netscape Navigator) is developed

These developments fundamentally changed how we communicate, access information, and conduct business globally.

Introduction to the Internet

🔬 What is the Internet?

The Internet is a global, interconnected computer network in which every computer connected to it can exchange data with any other connected computer.

It uses phone lines or broadband access to connect and contains a huge quantity of information accessible to users worldwide.

📝 Key Characteristics of the Internet

  • Global Reach: Connects computers worldwide
  • Interconnected: Allows data exchange between any connected devices
  • Infrastructure: Uses various connection methods (phone lines, broadband, wireless)
  • Information Repository: Contains vast amounts of data and resources

How the Internet Can Help Us

🔍 Information Access

We can find information quickly and easily on virtually any topic. The information is usually up-to-date and accessible from anywhere with an Internet connection.

📚 Education and Learning

The Internet enables access to educational resources, online courses, research materials, and collaborative learning platforms that support academic and professional growth.

💼 Professional Development

Individuals can communicate, obtain information, learn new skills, seek jobs, and maintain professional growth through various online platforms and resources.

🏢 Business Operations

Businesses find the Internet an indispensable tool for their needs, including marketing, communication, research, e-commerce, and customer service.

Basic Internet Terminology

💡 Essential Internet Vocabulary

Understanding these fundamental terms is crucial for navigating and utilizing the Internet effectively:

  • Web Page
  • Website
  • Home Page
  • Browser
  • Uniform Resource Locator (URL)
  • Hypertext
  • Internet Service Provider
  • Web Server
  • Download and Upload
  • Online and Offline

Web Page

🌐 What is a Web Page?

A Web Page is an electronic document written in a computer language called HTML (Hyper Text Markup Language). Web pages are also known as HTML documents.

Each web page can contain text, images, videos, and interactive elements that users can view through a web browser.

⚙️ Web Page Structure

HTML Document
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Heading</h1>
<p>Paragraph text</p>
</body>
</html>
↓ Rendered by Browser
Heading
Paragraph text

HTML Structure: Web pages are built using HTML tags that define the structure and content:

  • <html>: Root element of an HTML page
  • <head>: Contains meta information about the document
  • <title>: Specifies the title shown in the browser tab
  • <body>: Contains the visible page content
  • <h1> to <h6>: Define headings of different levels
  • <p>: Defines a paragraph

Website

🏢 What is a Website?

A Website is a set of related web pages (linked through hypertext links) published by an organization or individual.

The quality, detail, and style of websites vary enormously, depending on how they are designed and their intended purpose.

💡 Website Structure

Websites typically follow a hierarchical structure with:

  • Home Page: The main entry point
  • Navigation Menu: Helps users move between pages
  • Content Pages: Individual pages with specific information
  • Footer: Contains contact information, links, and copyright details

Home Page

🚪 What is a Home Page?

The Home Page is the starting point or a doorway to a website. It is also known as the index or index page.

Like the table of contents of a book, the home page usually provides an overview of what could be found at the website. If there is not much information, the home page may be the only page of the website.

📝 Home Page Functions

  • Introduction: Presents the website's purpose and content
  • Navigation: Provides links to other sections of the site
  • Branding: Establishes the visual identity of the website
  • Search: Often includes search functionality for larger sites

Browser

🌐 What is a Web Browser?

A Web browser is a computer program that accesses web pages and displays them on the computer screen. It is the basic software needed to find, retrieve, view, and send information over the internet.

Browser Type Description Examples
Graphical Browsers Allow retrieval of text, images, audio, and video. Navigation is accomplished by pointing and clicking with a mouse on highlighted words and graphics. Internet Explorer, Netscape Navigator, Mozilla Firefox, Google Chrome
Text Browsers Provide access to the web in text-only mode. Navigation is accomplished by highlighting emphasized words on the screen with the arrow up and down keys and then pressing the Enter key to follow the link. Linux (Lynx, Links)

Uniform Resource Locator (URL)

🔗 What is a URL?

Each web page has a unique address, called a Uniform Resource Locator (URL) that identifies its location on the Internet. Web browsers utilize the URL to retrieve a file from the computer on which it resides.

URL Structure Breakdown

Example URL: http://www.xyz.com/tutor/start/main.htm

Protocol

http:// - Specifies the communication protocol (HyperText Transfer Protocol)

World Wide Web

www - Indicates the resource is on the World Wide Web

Domain Name

xyz - The unique name identifying the website

Domain Type

.com - Indicates the type of organization (commercial)

Path

/tutor/start/ - The directory path to the specific file

File Name

main.htm - The specific file being requested

📝 Common Domain Extensions

  • .com: Commercial organizations
  • .edu: Educational institutions
  • .gov: Government agencies
  • .org: Non-profit organizations
  • .net: Network organizations
  • .mil: Military organizations
  • .int: International organizations

Hypertext

🔗 What is Hypertext?

Hypertext is a text that contains links to other texts. The term was invented by Ted Nelson around 1965.

Hypertext is therefore usually non-linear in structure. Hypertext documents can either be static (prepared and stored in advance) or dynamic (continually changing in response to user input, such as dynamic web pages).

💡 Hypertext in Action

When you click on a hypertext link:

  1. The browser identifies the target URL
  2. A request is sent to the appropriate web server
  3. The server responds with the requested page
  4. Your browser displays the new page

This non-linear navigation allows users to explore information based on their interests rather than following a predetermined sequence.

Internet Service Provider

📡 What is an ISP?

An Internet Service Provider (ISP) is a company that provides Internet access to its customers. The ISP provides a username, password, and access phone number. Equipped with a modem, you can then log on to the Internet and browse the web.

🏠 Residential ISPs

Provide internet access to homes through various technologies including DSL, cable, fiber optics, and satellite connections.

🏢 Business ISPs

Offer dedicated connections with higher speeds, better reliability, and additional services like static IP addresses and web hosting.

📱 Mobile ISPs

Provide internet access through cellular networks, enabling connectivity on smartphones, tablets, and mobile hotspots.

Web Server

🖥️ What is a Web Server?

A Web Server is a computer that stores web pages and other information. When a client computer requests a web page, the web server sends the requested page to the client computer.

⚙️ Client-Server Model

Client Computer
↓ Request (URL)
INTERNET
↓ Request (URL)
Web Server
↑ Response (Web Page)
INTERNET
↑ Response (Web Page)
Client Computer

How Web Servers Work:

  1. A user enters a URL in their browser
  2. The browser sends a request to the appropriate web server
  3. The web server processes the request and locates the requested file
  4. The server sends the file back to the client computer
  5. The browser renders the web page for the user to view

Popular Web Server Software:

  • Apache HTTP Server
  • Nginx
  • Microsoft IIS
  • LiteSpeed

Download and Upload

⬇️⬆️ Download vs. Upload

Download: To download means to request a file from another computer and receive that file. For example, you can download a game or a program from the Internet.

Upload: To upload means to send a file from your computer to another computer. For example, you can upload your web page to a server so that others can see it.

Operation Direction Examples
Download From remote computer to your computer Getting files, software, music, videos from the Internet
Upload From your computer to remote computer Sending files to cloud storage, posting photos to social media, publishing web pages

Online and Offline

🌐📴 Online vs. Offline

Online: When a computer is connected to the Internet, it is said to be online.

Offline: When a computer is not connected to the Internet, it is said to be offline.

💡 Practical Implications

Online Activities:

  • Browsing websites
  • Sending and receiving emails in real-time
  • Streaming videos and music
  • Using cloud-based applications

Offline Activities:

  • Working on locally stored documents
  • Playing locally installed games
  • Viewing previously downloaded content
  • Using offline-capable applications

Internet Evolution and History

📜 The Evolution of the Internet

The Internet has evolved through several distinct phases:

  • 1960s: Development of packet switching and ARPANET
  • 1970s: Creation of TCP/IP protocols and email
  • 1980s: Expansion of academic and research networks
  • 1990s: Birth of the World Wide Web and commercial Internet
  • 2000s: Rise of social media, mobile Internet, and Web 2.0
  • 2010s: Cloud computing, IoT, and high-speed mobile networks
  • 2020s: 5G networks, AI integration, and edge computing

📈 Internet Growth Timeline

[Timeline showing key milestones in Internet development from 1960s to present]

The Internet has grown from a small research network to a global infrastructure connecting billions of users and devices worldwide.

Mobile Network Generations

📱 What are Mobile Network Generations?

Mobile network generations refer to the different stages of development in wireless communication technology. Each generation represents a significant advancement in capabilities, speed, and services.

1G (First Generation)

📞 1G: Analog Cellular

1G refers to the first generation of wireless telephone technology, mobile telecommunications. These are the analog telecommunications standards that were introduced in the 1980s and continued until being replaced by 2G digital telecommunications.

🔊 Technology

1G systems used analog radio signals and were primarily designed for voice communication only.

📶 Key Features

  • Analog signal transmission
  • Voice calls only
  • Poor voice quality
  • No data services
  • Limited capacity

🌍 Standards

  • AMPS (Advanced Mobile Phone System)
  • TACS (Total Access Communication System)
  • NMT (Nordic Mobile Telephone)

2G (Second Generation)

📱 2G: Digital Cellular

2G (or 2-G) is short for second-generation wireless telephone technology. Second generation 2G cellular telecom networks were commercially launched on the GSM standard in Finland by Radiolinja (now part of Elisa Oyj) in 1991.

Aspect 2G Features
Technology Digital signals
Data Speed Up to 64 kbps
Services Voice, SMS, MMS
Security Encrypted calls
Standards GSM, CDMA

💡 2G Advancements

2G networks introduced several important innovations:

  • Digital Encryption: Made phone calls more secure
  • SMS (Short Message Service): Enabled text messaging
  • Data Services: Basic internet connectivity
  • Roaming: Ability to use phones in different networks

3G (Third Generation)

📶 3G: Mobile Broadband

3G, short for third generation, is the third generation of mobile telecommunications technology. This is based on a set of standards used for mobile devices and mobile telecommunications services and networks.

🚀 Speed and Performance

3G networks provide:

  • Data transmission speeds up to 2 Mbps
  • Enhanced voice quality
  • Video calling capability
  • Mobile TV streaming

📱 Applications

3G enabled new mobile applications:

  • Video conferencing
  • Mobile internet browsing
  • GPS navigation
  • Mobile gaming

🌐 Standards

Major 3G standards include:

  • W-CDMA (Wideband CDMA)
  • CDMA2000
  • TD-SCDMA
2 Mbps
Maximum data speed of 3G networks

4G (Fourth Generation)

⚡ 4G: True Mobile Internet

4G is the fourth generation of mobile phone mobile communication technology standards. It is a successor of the third generation (3G) standards. A 4G system provides mobile ultra-broadband Internet access.

Feature 4G Capabilities
Data Speed Up to 100 Mbps for high mobility, 1 Gbps for low mobility
Technology All-IP network
Latency Less than 5ms
Services HD video streaming, online gaming, VoIP
Standards LTE, WiMAX

🎥 High-Definition Video

4G enables seamless streaming of HD video content on mobile devices without buffering or quality degradation.

🎮 Online Gaming

Low latency and high speeds make real-time multiplayer gaming possible on mobile devices.

💻 Mobile Computing

4G transforms smartphones into powerful computing devices capable of running demanding applications.

1 Gbps
Theoretical maximum speed of 4G LTE-Advanced

Frequently Asked Questions

What's the difference between the Internet and the World Wide Web?

The Internet and the World Wide Web are often used interchangeably, but they refer to different things:

  • Internet: The global network of interconnected computers that communicate using standardized protocols. It's the infrastructure that enables communication.
  • World Wide Web (WWW): A service that runs on the Internet, consisting of interconnected documents and other resources linked by hyperlinks and URLs.

Think of the Internet as the roads and highways, while the Web is the delivery trucks that use those roads to bring you information.

How does a web browser actually display a web page?

When you enter a URL in your browser, here's what happens:

  1. The browser sends a request to the web server hosting the page
  2. The server responds by sending the HTML file for the page
  3. The browser reads the HTML and builds the Document Object Model (DOM)
  4. It then requests additional resources like CSS, JavaScript, and images
  5. The browser applies CSS styles to format the page
  6. JavaScript code executes to add interactivity
  7. The fully rendered page is displayed to the user

This entire process typically happens in seconds, thanks to modern browser optimization.

What are the main differences between 3G and 4G networks?

The transition from 3G to 4G represented a significant leap in mobile technology:

Feature 3G 4G
Maximum Speed 2 Mbps 100 Mbps - 1 Gbps
Latency 100-200 ms < 5 ms
Technology Circuit and packet switching All-IP network
Primary Use Voice and basic data High-speed data and multimedia
Video Quality Standard definition High definition

4G's all-IP architecture means that even voice calls are treated as data packets, enabling higher efficiency and better integration with Internet services.

📚 Continue Your ICT Journey

Understanding Internet fundamentals is essential in today's digital world. These concepts form the foundation for more advanced topics in networking, web development, and digital communication.

Explore More ICT Topics

© ICT Education Initiative | Internet Fundamentals Lecture Notes

Based on university ICT curriculum with additional insights from industry experts

Tags

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.