SlideShare a Scribd company logo
Basics of Computer
Difference between PL,MUL,SL?
Programming Language:
•Definition: Programming languages consist of
instructions or code that tell a computer what
tasks to perform. They provide logic for software
development.
•Purpose: Used to create software, drivers, and
applications.
•Examples: Java, C, C++, C#.
•Conversion: Written in human-readable form,
then compiled into machine-level language.
•Key Point
: High-level languages that need compilation
Markup Language:
•Definition: Markup languages define
the structure or design of a page. They
don’t include logic or algorithms.
•Purpose: Prepare the look of data (e.g.,
web pages).
•Examples: HTML (Hypertext Markup
Language).
•Key Point
: Presentational languages, not asking lo
gical questions
Scripting Language:
1. Definition: Subcategory of programming
languages used to control other programs.
Provides guidance to another program.
2. Purpose: Create websites, connect languages.
3. Examples: JavaScript, PHP, Python.
4. Conversion: Interpreted (scanned line by line, no
compilation).
5. Key Point
: No standalone execution; works in conjunction
with other languages
12
.
In summary, programming languages create software,
markup languages define structure, and scripting
languages control other programs.
Feel free to ask if you need further clarification!
Difference between WB,SE,WS,WP?
1.Web Page:
1. A web page is a document that
can be displayed in a web
browser (such as Firefox, Chrome,
or Safari).
2. Think of it as a single page within
a book. Each web page has a
unique location (URL) and
contains content like text, images,
videos, and links.
3. Web pages are the building
blocks of websites.
1.Website:
1. A website is a collection of
related web pages grouped
together and usually connected
in various ways.
2. Imagine a book containing
multiple pages. These pages are
the individual web pages within
a website.
3. Websites can be small (with just
a few pages) or large (with
hundreds or thousands of
pages).
Ex: https://www.dbcyelagiri.edu.in/
1.Web Server:
1. A web server is a
computer that hosts a
website on the Internet.
2. It stores the web pages
and serves them to users
when they request them
through their browsers.
3. Think of it as the library
that houses the books
(web pages) and allows
people to access them.
1.Search Engine:
1. A search engine is a web service that helps you
find other web pages.
2. Examples include Google, Bing, Yahoo, and
DuckDuckGo.
3. Search engines crawl the web, index content,
and provide search results based on keywords.
4. You can access search engines directly through
a web browser or by visiting their websites.
In summary, a web browser displays web pages, a web
server hosts websites, and a search engine helps you
find relevant content across the web
Web Browser
The web browser is an application software to explore www (
World Wide Web).
It provides an interface between the server and the client and
it requests to the server for web documents and services.
 It works as a compiler to render HTML which is used to
design a webpage.
Whenever we search for anything on the internet, the
browser loads a web page written in HTML, including text,
links, images, and other items such as style sheets and
JavaScript functions.
Ex: Google Chrome, Microsoft Edge, Mozilla Firefox, and
Safari are examples of web browsers.
Objectives of the Course
1. Insert a
graphic within
a web page.
2. Create a
link within a
web page.
3. Create a
table within a
web page.
4. Insert
heading levels
within a web
page.
5. Insert
ordered and
unordered
lists within a
web page.
Create a web
page.
HTML
Course
Outline
Unit-1
Introduction
to HTML
Unit-2
Designing a
Webpage
Unit-3
Formatting
Unit-4
Links
Unit-5
Images
Intro to HTML:
 HTML Basic Tags
 Unicode Transformation Format
 HTML 5 Version
 Difference bt Html & Html5
 <DOCTYPE> in HTML
TAGS:
 Basic Tags & Structure
 HTML Tags
 Head Tags
 Title Tags
 Body Tags
 Meta Data
 Saving Html Document
 Comments,Block Quotes
Page Formatting
 Adding New Paragraph
 Adding Line Breaks
 Inserting Blank Space
 Changing page BG Color
 Div Element
 Text Items & Objects,Headings
 Horizontal Lines
 Creating Lists
 Types of Lists
Links:
 Intro to Links
 Text Link
 Image Link
 Opening a web page in New
window/ Tab
 Add BookMarks (Within Page Link
Creating)
 Linking to an Email Address
 Linking to types of Files
Images:
 Intro to Images
 How to add Image in web page
 Resizing images
 ALT Text
 Image Labels
Tables:
 Intro to Tables
 Inserting Table
 Table Borders
 Table Headers
What is HTML?
H – Hyper
T – Text
M— MarkUP
L— Language
•HTML stands for Hyper Text Markup Language
•HTML is the standard markup language for creating
Web pages
•HTML describes the structure of a Web page
•HTML consists of a series of elements
•HTML elements tell the browser how to display the
content
•HTML elements label pieces of content such as "this
is a heading", "this is a paragraph", "this is a link",
etc.
Basics of html , basic of computer , html tags
Basics of html , basic of computer , html tags
What is the structure?
<!DOCTYPE html> ----declaration defines that this document is an HTML5
document
<html> ------element is the root element of an HTML page
<head>------element contains meta information about the HTML page
<title>Page Title</title>-----element specifies a title for the HTML page (which is
shown in the browser's title bar or in the page's tab)
</head>
<body>----element defines the document's body, and is a container for all the visible
contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
My First Heading
My first paragraph
</body>
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Basics of html , basic of computer , html tags
Introduction to HTML
Introduction to HTML
•HTML (HyperText Markup Language): The standard language for creating web pages.
•Purpose: HTML structures content on the web, allowing the creation of web pages that can be
displayed in a web browser.
•Basic Concept: HTML uses tags to enclose different parts of the content to make it appear or act
a certain way.
Opening for Writing HTML
<!DOCTYPE html>: Declaration defines the document type and
version of HTML (HTML5 in this case).
<html>...</html>: Root element that encloses all HTML content.
<head>...</head>: Contains meta-information about the HTML
document, such as title, character set, and links to stylesheets.
<body>...</body>: Contains the content of the HTML document,
such as text, images, links, and other media.
Unicode Transformation Format [UTF]
What is Unicode?
Unicode is a computing industry standard designed to consistently and uniquely encode,
represent, and handle text expressed in most of the world's writing systems. It assigns a unique
number (code point) to every character, no matter the platform, program, or language.
Unicode Code Points
•Code Points: The unique numbers assigned to each character in the Unicode standard. They
range from U+0000 to U+10FFFF.
UTF (Unicode Transformation Format)
UTF encodings are methods of transforming Unicode code points into a sequence of bytes.
Different UTF encodings vary in how they map these code points to bytes.
UTF-8
Overview
•UTF-8: A variable-width character encoding that can represent every character in the Unicode
character set using one to four bytes.
•Compatibility: Backward-compatible with ASCII, meaning any valid ASCII text is also valid UTF-8
encoded text.
•Efficiency: Commonly used characters (e.g., ASCII characters) are encoded in one byte, making it
space-efficient for texts with many such characters.
How UTF-8 Works
UTF-8 uses one to four bytes to encode Unicode characters. Each byte has a specific
pattern to indicate whether it is a single-byte character or part of a multi-byte sequence.
•Single-byte (ASCII): Characters in the range U+0000 to U+007F are encoded in one byte.
• 0xxxxxxx (where x is a bit of the character).
•Multi-byte: Characters beyond the ASCII range use two to four bytes.
• 2 bytes: U+0080 to U+07FF
• 110xxxxx 10xxxxxx
• 3 bytes: U+0800 to U+FFFF
• 1110xxxx 10xxxxxx 10xxxxxx
• 4 bytes: U+10000 to U+10FFFF
• 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
Examples
1.Character 'A' (U+0041):
1. Binary: 01000001
2. UTF-8 Encoding: 01000001 (1 byte, same as ASCII)
2.Character 'é' (U+00E9):
1. Binary: 11101001
2. UTF-8 Encoding: 11000011 10101001 (2 bytes)
Basics of html , basic of computer , html tags
HTML 5 Resources
•HTML5 Resources: Online resources like MDN Web Docs, W3Schools, and HTML5 Rocks provide
extensive documentation and tutorials on HTML5.
•Libraries and Frameworks: Tools like Bootstrap, jQuery, and Modernizr help streamline HTML5
development.
What's Different in HTML 5?
•New Semantic Elements: <article>, <section>, <nav>, <header>, <footer>, and more.
•Form Enhancements: New input types like date, email, and range.
•Multimedia Support: <audio> and <video> tags for embedding media.
•APIs and Features: Geolocation, local storage, canvas for drawing, and web workers for
background tasks.
https://chatgpt.com/c/b0984b18-648a-49a0-86f3-f61f5a0f0f3a
ELEMENT VS ATTRIBUTE?

More Related Content

PDF
Iwt module 1
SANTOSH RATH
 
PPTX
Html in Web design and Development.pptxt.pptx
samuelasefa9
 
PPTX
Introduction to Web Techniques_Key componenets_HTML Basics
DeepakUlape2
 
PPT
Html
SBalan Balan
 
PPTX
Html-meeting1-1.pptx
YoussefAbobakr
 
PPTX
Html
yugank_gupta
 
PPT
HTML Programming, Html tags, Html tools,
Mtnc BCA DEPARTMENT
 
PPT
HTML element is everything between the start tag and the end tag
ssuser6478a8
 
Iwt module 1
SANTOSH RATH
 
Html in Web design and Development.pptxt.pptx
samuelasefa9
 
Introduction to Web Techniques_Key componenets_HTML Basics
DeepakUlape2
 
Html-meeting1-1.pptx
YoussefAbobakr
 
HTML Programming, Html tags, Html tools,
Mtnc BCA DEPARTMENT
 
HTML element is everything between the start tag and the end tag
ssuser6478a8
 

Similar to Basics of html , basic of computer , html tags (20)

PPT
Introduction to html
Jonathan Arroyo
 
PPT
introdution-to-html(Hypertext Markup Language).ppt
catliegay
 
PPTX
WEB TECHNOLOGY SLIDE 2 coe35mgfdggdh.pptx
simukondasankananji8
 
PPTX
Web Site Designing - Basic
Sanduni Palliyaguru
 
PPTX
introdution-to-html.pptx
datapro2
 
PPT
introdution-to-html,regarding high level language
Aminazakeer
 
PPTX
html -Hyper Text Markup Languagejjjjjjjjjjjjjjjjjjjjjjjjj
NetajiGandi1
 
PPT
introdution-to000000000000000000000-html.ppt
Sandeep Mathur
 
PPT
Web forms and html (lect 1)
Salman Memon
 
PDF
Unit 4 - HTTP and the Web Services - IT
Deepraj Bhujel
 
PPT
Dynamic html (#1)
Haider Habeeb
 
PDF
Unit 5 application layer
Kritika Purohit
 
PPTX
Grade 10 COMPUTER
Joel Linquico
 
PPT
introduction to HTML. How to learn HTML coding
meheraf045
 
PPTX
Std 10 Computer Chapter 1 introduction to HTML (Part 1)
Nuzhat Memon
 
PPTX
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
smitawagh14
 
PPT
introduction-to-html hyper text markup .ppt
ubaidullah75790
 
PPTX
introdution to hypertext machine learning language
naren adapa
 
PPT
Unit 2 (html)
manochitra10
 
PDF
Chapter 2 Notes, MCQs, and QA (HTML and CSS).pdf
rehansayyadgolden07
 
Introduction to html
Jonathan Arroyo
 
introdution-to-html(Hypertext Markup Language).ppt
catliegay
 
WEB TECHNOLOGY SLIDE 2 coe35mgfdggdh.pptx
simukondasankananji8
 
Web Site Designing - Basic
Sanduni Palliyaguru
 
introdution-to-html.pptx
datapro2
 
introdution-to-html,regarding high level language
Aminazakeer
 
html -Hyper Text Markup Languagejjjjjjjjjjjjjjjjjjjjjjjjj
NetajiGandi1
 
introdution-to000000000000000000000-html.ppt
Sandeep Mathur
 
Web forms and html (lect 1)
Salman Memon
 
Unit 4 - HTTP and the Web Services - IT
Deepraj Bhujel
 
Dynamic html (#1)
Haider Habeeb
 
Unit 5 application layer
Kritika Purohit
 
Grade 10 COMPUTER
Joel Linquico
 
introduction to HTML. How to learn HTML coding
meheraf045
 
Std 10 Computer Chapter 1 introduction to HTML (Part 1)
Nuzhat Memon
 
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
smitawagh14
 
introduction-to-html hyper text markup .ppt
ubaidullah75790
 
introdution to hypertext machine learning language
naren adapa
 
Unit 2 (html)
manochitra10
 
Chapter 2 Notes, MCQs, and QA (HTML and CSS).pdf
rehansayyadgolden07
 
Ad

Recently uploaded (20)

PPTX
HISTORY COLLECTION FOR PSYCHIATRIC PATIENTS.pptx
PoojaSen20
 
PPTX
PREVENTIVE PEDIATRIC. pptx
AneetaSharma15
 
PPTX
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
PPTX
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
Priyanshu Anand
 
PDF
Review of Related Literature & Studies.pdf
Thelma Villaflores
 
PDF
Virat Kohli- the Pride of Indian cricket
kushpar147
 
PPTX
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
PPTX
Kanban Cards _ Mass Action in Odoo 18.2 - Odoo Slides
Celine George
 
PDF
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
PPTX
Software Engineering BSC DS UNIT 1 .pptx
Dr. Pallawi Bulakh
 
PDF
2.Reshaping-Indias-Political-Map.ppt/pdf/8th class social science Exploring S...
Sandeep Swamy
 
PDF
What is CFA?? Complete Guide to the Chartered Financial Analyst Program
sp4989653
 
PPTX
Trends in pediatric nursing .pptx
AneetaSharma15
 
PDF
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
PPTX
Artificial-Intelligence-in-Drug-Discovery by R D Jawarkar.pptx
Rahul Jawarkar
 
DOCX
SAROCES Action-Plan FOR ARAL PROGRAM IN DEPED
Levenmartlacuna1
 
PPTX
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
PPTX
TEF & EA Bsc Nursing 5th sem.....BBBpptx
AneetaSharma15
 
PPTX
Information Texts_Infographic on Forgetting Curve.pptx
Tata Sevilla
 
PDF
UTS Health Student Promotional Representative_Position Description.pdf
Faculty of Health, University of Technology Sydney
 
HISTORY COLLECTION FOR PSYCHIATRIC PATIENTS.pptx
PoojaSen20
 
PREVENTIVE PEDIATRIC. pptx
AneetaSharma15
 
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
Priyanshu Anand
 
Review of Related Literature & Studies.pdf
Thelma Villaflores
 
Virat Kohli- the Pride of Indian cricket
kushpar147
 
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
Kanban Cards _ Mass Action in Odoo 18.2 - Odoo Slides
Celine George
 
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
Software Engineering BSC DS UNIT 1 .pptx
Dr. Pallawi Bulakh
 
2.Reshaping-Indias-Political-Map.ppt/pdf/8th class social science Exploring S...
Sandeep Swamy
 
What is CFA?? Complete Guide to the Chartered Financial Analyst Program
sp4989653
 
Trends in pediatric nursing .pptx
AneetaSharma15
 
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
Artificial-Intelligence-in-Drug-Discovery by R D Jawarkar.pptx
Rahul Jawarkar
 
SAROCES Action-Plan FOR ARAL PROGRAM IN DEPED
Levenmartlacuna1
 
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
TEF & EA Bsc Nursing 5th sem.....BBBpptx
AneetaSharma15
 
Information Texts_Infographic on Forgetting Curve.pptx
Tata Sevilla
 
UTS Health Student Promotional Representative_Position Description.pdf
Faculty of Health, University of Technology Sydney
 
Ad

Basics of html , basic of computer , html tags

  • 2. Difference between PL,MUL,SL? Programming Language: •Definition: Programming languages consist of instructions or code that tell a computer what tasks to perform. They provide logic for software development. •Purpose: Used to create software, drivers, and applications. •Examples: Java, C, C++, C#. •Conversion: Written in human-readable form, then compiled into machine-level language. •Key Point : High-level languages that need compilation Markup Language: •Definition: Markup languages define the structure or design of a page. They don’t include logic or algorithms. •Purpose: Prepare the look of data (e.g., web pages). •Examples: HTML (Hypertext Markup Language). •Key Point : Presentational languages, not asking lo gical questions Scripting Language: 1. Definition: Subcategory of programming languages used to control other programs. Provides guidance to another program. 2. Purpose: Create websites, connect languages. 3. Examples: JavaScript, PHP, Python. 4. Conversion: Interpreted (scanned line by line, no compilation). 5. Key Point : No standalone execution; works in conjunction with other languages 12 . In summary, programming languages create software, markup languages define structure, and scripting languages control other programs. Feel free to ask if you need further clarification!
  • 3. Difference between WB,SE,WS,WP? 1.Web Page: 1. A web page is a document that can be displayed in a web browser (such as Firefox, Chrome, or Safari). 2. Think of it as a single page within a book. Each web page has a unique location (URL) and contains content like text, images, videos, and links. 3. Web pages are the building blocks of websites. 1.Website: 1. A website is a collection of related web pages grouped together and usually connected in various ways. 2. Imagine a book containing multiple pages. These pages are the individual web pages within a website. 3. Websites can be small (with just a few pages) or large (with hundreds or thousands of pages). Ex: https://www.dbcyelagiri.edu.in/
  • 4. 1.Web Server: 1. A web server is a computer that hosts a website on the Internet. 2. It stores the web pages and serves them to users when they request them through their browsers. 3. Think of it as the library that houses the books (web pages) and allows people to access them. 1.Search Engine: 1. A search engine is a web service that helps you find other web pages. 2. Examples include Google, Bing, Yahoo, and DuckDuckGo. 3. Search engines crawl the web, index content, and provide search results based on keywords. 4. You can access search engines directly through a web browser or by visiting their websites. In summary, a web browser displays web pages, a web server hosts websites, and a search engine helps you find relevant content across the web
  • 5. Web Browser The web browser is an application software to explore www ( World Wide Web). It provides an interface between the server and the client and it requests to the server for web documents and services.  It works as a compiler to render HTML which is used to design a webpage. Whenever we search for anything on the internet, the browser loads a web page written in HTML, including text, links, images, and other items such as style sheets and JavaScript functions. Ex: Google Chrome, Microsoft Edge, Mozilla Firefox, and Safari are examples of web browsers.
  • 6. Objectives of the Course 1. Insert a graphic within a web page. 2. Create a link within a web page. 3. Create a table within a web page. 4. Insert heading levels within a web page. 5. Insert ordered and unordered lists within a web page. Create a web page.
  • 7. HTML Course Outline Unit-1 Introduction to HTML Unit-2 Designing a Webpage Unit-3 Formatting Unit-4 Links Unit-5 Images Intro to HTML:  HTML Basic Tags  Unicode Transformation Format  HTML 5 Version  Difference bt Html & Html5  <DOCTYPE> in HTML TAGS:  Basic Tags & Structure  HTML Tags  Head Tags  Title Tags  Body Tags  Meta Data  Saving Html Document  Comments,Block Quotes Page Formatting  Adding New Paragraph  Adding Line Breaks  Inserting Blank Space  Changing page BG Color  Div Element  Text Items & Objects,Headings  Horizontal Lines  Creating Lists  Types of Lists Links:  Intro to Links  Text Link  Image Link  Opening a web page in New window/ Tab  Add BookMarks (Within Page Link Creating)  Linking to an Email Address  Linking to types of Files Images:  Intro to Images  How to add Image in web page  Resizing images  ALT Text  Image Labels Tables:  Intro to Tables  Inserting Table  Table Borders  Table Headers
  • 8. What is HTML? H – Hyper T – Text M— MarkUP L— Language •HTML stands for Hyper Text Markup Language •HTML is the standard markup language for creating Web pages •HTML describes the structure of a Web page •HTML consists of a series of elements •HTML elements tell the browser how to display the content •HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
  • 11. What is the structure? <!DOCTYPE html> ----declaration defines that this document is an HTML5 document <html> ------element is the root element of an HTML page <head>------element contains meta information about the HTML page <title>Page Title</title>-----element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab) </head> <body>----element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc. My First Heading My first paragraph </body> <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>
  • 13. Introduction to HTML Introduction to HTML •HTML (HyperText Markup Language): The standard language for creating web pages. •Purpose: HTML structures content on the web, allowing the creation of web pages that can be displayed in a web browser. •Basic Concept: HTML uses tags to enclose different parts of the content to make it appear or act a certain way.
  • 14. Opening for Writing HTML <!DOCTYPE html>: Declaration defines the document type and version of HTML (HTML5 in this case). <html>...</html>: Root element that encloses all HTML content. <head>...</head>: Contains meta-information about the HTML document, such as title, character set, and links to stylesheets. <body>...</body>: Contains the content of the HTML document, such as text, images, links, and other media.
  • 15. Unicode Transformation Format [UTF] What is Unicode? Unicode is a computing industry standard designed to consistently and uniquely encode, represent, and handle text expressed in most of the world's writing systems. It assigns a unique number (code point) to every character, no matter the platform, program, or language. Unicode Code Points •Code Points: The unique numbers assigned to each character in the Unicode standard. They range from U+0000 to U+10FFFF. UTF (Unicode Transformation Format) UTF encodings are methods of transforming Unicode code points into a sequence of bytes. Different UTF encodings vary in how they map these code points to bytes.
  • 16. UTF-8 Overview •UTF-8: A variable-width character encoding that can represent every character in the Unicode character set using one to four bytes. •Compatibility: Backward-compatible with ASCII, meaning any valid ASCII text is also valid UTF-8 encoded text. •Efficiency: Commonly used characters (e.g., ASCII characters) are encoded in one byte, making it space-efficient for texts with many such characters.
  • 17. How UTF-8 Works UTF-8 uses one to four bytes to encode Unicode characters. Each byte has a specific pattern to indicate whether it is a single-byte character or part of a multi-byte sequence. •Single-byte (ASCII): Characters in the range U+0000 to U+007F are encoded in one byte. • 0xxxxxxx (where x is a bit of the character). •Multi-byte: Characters beyond the ASCII range use two to four bytes. • 2 bytes: U+0080 to U+07FF • 110xxxxx 10xxxxxx • 3 bytes: U+0800 to U+FFFF • 1110xxxx 10xxxxxx 10xxxxxx • 4 bytes: U+10000 to U+10FFFF • 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx Examples 1.Character 'A' (U+0041): 1. Binary: 01000001 2. UTF-8 Encoding: 01000001 (1 byte, same as ASCII) 2.Character 'é' (U+00E9): 1. Binary: 11101001 2. UTF-8 Encoding: 11000011 10101001 (2 bytes)
  • 19. HTML 5 Resources •HTML5 Resources: Online resources like MDN Web Docs, W3Schools, and HTML5 Rocks provide extensive documentation and tutorials on HTML5. •Libraries and Frameworks: Tools like Bootstrap, jQuery, and Modernizr help streamline HTML5 development.
  • 20. What's Different in HTML 5? •New Semantic Elements: <article>, <section>, <nav>, <header>, <footer>, and more. •Form Enhancements: New input types like date, email, and range. •Multimedia Support: <audio> and <video> tags for embedding media. •APIs and Features: Geolocation, local storage, canvas for drawing, and web workers for background tasks. https://chatgpt.com/c/b0984b18-648a-49a0-86f3-f61f5a0f0f3a