Data
Raw facts and figures without context.
Example:
“23”, “Apple”, “Blue”.
Information
Processed data that has meaning.
Example:
“The temperature is 23°C”.
Knowledge
Applied information based on experience or understanding.
Example:
“If the temperature is 23°C, it’s comfortable for outdoor activities”.
1964 – Computers Introduced
The foundation of modern computing begins.
1998 – Web 1.0
The first generation of the web: static pages, read-only content, minimal user interaction.
Web 2.0
Interactive and dynamic websites: user-generated content, social media, and responsive web design.
Web 3.0
Semantic web: machine learning, AI integration, personalized experiences.
Web 4.0
Intelligent and decentralized web: virtual assistants, blockchain, and context-aware applications (e.g., Div-based intelligent UI/UX).
Definition:
A website is a collection of related web pages accessible over the Internet, hosted on at least one web server.
Explanation:
A website contains text, images, videos, and other multimedia content.
It is accessed via a domain name through a web browser.
All websites are hosted on web servers that are connected to the Internet.
A web page is a single document on the internet, written in HTML (HyperText Markup Language), and viewed using a web browser.
A browser is a software application used to access and view websites.
A protocol is a set of rules and regulations used to perform specific tasks in communication between computers or systems over a network.
HTML stands for HyperText Markup Language.
It is the standard markup language used to create web pages and web applications.
HTML is a markup language, not a programming language, because:
HTML is a markup language used to define the structure of web content using elements and tags. It tells the browser how to display text, images, links, and other content.
The DOM is a programming interface for HTML and XML documents.
It represents the structure of a web page as a tree of objects (nodes), which can be modified using JavaScript.
Opening and Closing Tags: Most HTML tags come in pairs. Example:
<p>Paragraph</p>
2. Behavior-wise:
Block-Level Tags: Take full width and start on a new line.
Examples:<div>, <p>, <h1>,<section>
Inline Tags: Flow within text and do not start on a new line.
Examples:<span>, <a>,<strong>,<img>
3. Empty (Void) Tags:
Tags that do not have closing tags or body content.
Examples:<img>, <br>, <hr>, <input>