SlideShare uma empresa Scribd logo
1 de 33
Hypertext Markup
Language
GRADE 10 COMPUTER
What is HTML? The Basics of Hypertext
Markup Language Explained
What is HTML? The Basics of Hypertext
Markup Language Explained
HTML stands for Hypertext Markup Language. It allows
the user to create and structure sections, paragraphs,
headings, links, and blockquotes for web pages and
applications.
HTML is not a programming language, meaning it doesn’t
have the ability to create dynamic functionality. Instead,
it makes it possible to organize and format documents,
similarly to Microsoft Word.
When working with HTML
we use simple code structures (tags and attributes)
to mark up a website page. For example, we can
create a paragraph by placing the enclosed text
within a starting <p> and closing </p> tag.
• <p>This is how you add a paragraph in HTML.</p>
• <p>You can have more than one!</p>
The History of HTML
The History of HTML
HTML was invented by Tim Berners-Lee, a physicist at the CERN
research institute in Switzerland. He came up with the idea of an
Internet-based hypertext system.
Hypertext means a text that contains references (links) to other
texts that viewers can access immediately. He published the first
version of HTML in 1991, consisting of 18 HTML tags. Since then,
each new version of the HTML language came with new tags and
attributes (tag modifiers) to the markup.
The History of HTML
According to Mozilla Developer Network’s HTML Element
Reference, currently, there are 140 HTML tags, although some
of them are already obsolete (not supported by modern
browsers).
Due to a quick rise in popularity, HTML is now considered an
official web standard. The HTML specifications are maintained
and developed by the World Wide Web Consortium (W3C). You
can check out the latest state of the language anytime
on W3C’s website.
The History of HTML
The biggest upgrade of the language was the
introduction of HTML5 in 2014. It added
several new semantic tags to the markup,
that reveal the meaning of their own
content, such as <article>, <header>,
and <footer>.
How Does HTML Work?
How Does HTML Work?
HTML documents are files that end with a
.html or .htm extension. You can view then using any web
browser (such as Google Chrome, Safari, or Mozilla
Firefox). The browser reads the HTML file and renders its
content so that internet users can view it.
Usually, the average website includes several different
HTML pages. For instance: home pages, about pages,
contact pages would all have separate HTML documents.
How Does HTML Work?
Each HTML page consists of a set of tags (also
called elements), which you can refer to as the building
blocks of web pages. They create a hierarchy that
structures the content into sections, paragraphs,
headings, and other content blocks.
Most HTML elements have an opening and a closing that
use the <tag></tag> syntax.
Below, you can see a code example of how
HTML elements can be structured:
• <div>
• <h1>The Main Heading</h1>
• <h2>A catchy subheading</h2>
• <p>Paragraph one</p>
• <img src="/" alt="Image">
• <p>Paragraph two with a <a
href="https://example.com">hyperlink</a></p>
• </div>
• The outmost element is a simple division (<div></div>)
you can use to mark up bigger content sections.
• It contains a heading (<h1></h1>), a subheading
(<h2></h2>), two paragraphs (<p></p>), and an image
(<img>).
• The second paragraph includes a link (<a></a>) with a
href attribute that contains the destination URL.
• The image tag also has two attributes: src for the image
path and alt for the image description.
Overviewing The Most Used HTML Tags
HTML tags have two main types: block-
level and inline tags.
1. Block-level elements take up the full available
space and always start a new line in the document.
Headings and paragraphs are a great example of
block tags.
2. Inline elements only take up as much space as they
need and don’t start a new line on the page. They
usually serve to format the inner contents of block-
level elements. Links and emphasized strings are
good examples of inline tags.
Block-Level Tags
The three block level tags every HTML document needs to
contain are <html>, <head>, and <body>.
1. The <html></html> tag is the highest level element
that encloses every HTML page.
2. The <head></head> tag holds meta information such
as the page’s title and charset.
3. Finally, the <body></body> tag encloses all the
content that appears on the page.
Block-Level Tags
1. <html>
2. <head>
3. <!-- META INFORMATION -->
4. </head>
5. <body>
6. <!-- PAGE CONTENT -->
7. </body>
8. </html>
Block-Level Tags
•Headings have 6 levels in HTML. They range
from <h1></h1> to <h6></h6>, where h1 is
the highest level heading and h6 is the
lowest one. Paragraphs are enclosed
by <p></p>, while blockquotes use
the <blockquote></blockquote> tag.
Block-Level Tags
• Divisions are bigger content sections that
typically contain several paragraphs, images,
sometimes blockquotes, and other smaller
elements. We can mark them up using
the <div></div> tag. A div element can contain
another div tag inside it as well.
Block-Level Tags
You may also use <ol></ol> tags for
ordered lists
and <ul></ul> for unordered ones.
Individual list items must be enclosed by
the <li></li> tag. For example, this is
how a basic unordered list looks like in
HTML:
Block-Level Tags
1. <ul>
2. <li>List item 1</li>
3. <li>List item 2</li>
4. <li>List item 3</li>
5. </ul>
Inline Tags
Many inline tags are used to format text. For example, a <strong></strong> tag would
render an element in bold, whereas <em></em> tags would show it in italics.
Hyperlinks are also inline elements that require <a></a> tags and href attributes to
indicate the link’s destination:
1. <a href="https://example.com/">Click me!</a>
Images are inline elements too. You can add one using <img> without any closing tag.
But you will also need to use the src attribute to specify the image path, for example:
1. <img src="/images/example.jpg" alt="Example image">
If you want to learn more HTML tags, consider checking our complete HTML cheat
sheet (which is also available for download).
HTML Evolution. What Differs Between
HTML and HTML5?
HTML Evolution. What Differs Between
HTML and HTML5?
Since the first days, HTML has gone through an
incredible evolution. W3C constantly publish new
versions and updates, while historical milestones get
dedicated names as well.
HTML4 (these days commonly referred to as “HTML”)
was published in 1999, while the latest major version
came out in 2014. Named HTML5, the update has
introduced many new features to the language.
HTML Evolution. What Differs Between
HTML and HTML5?
One of the most anticipated features of HTML5 is
native support for audio and video embedding.
Instead of using Flash player, we can simply embed
videos and audio files to our web pages using the
new <audio></audio> and <video></video> tags.
It also includes in-built support for scalable vector
graphics (SVG) and MathML for mathematical and
scientific formulas.
HTML Evolution. What Differs Between
HTML and HTML5?
HTML5 introduced a few semantic improvements as well.
The new semantic tags inform browsers about the meaning
of content, which benefits both readers and search
engines.
The most popular semantic tags
are <article></article>, <section></section>, <aside></
aside>, <header></header>, and <footer></footer>. To
find amore unique differences, consider checking our in-
depth HTML and HTML5 comparison.
Pros and Cons of HTML
Like most things, HTML comes with a handful
of strengths and limitations.
Pros:
A widely used language with a lot of resources and a huge community
behind.
Runs natively in every web browser.
Comes with a flat learning curve.
Open-source and completely free.
Clean and consistent markup.
The official web standards are maintained by the World Wide Web
Consortium (W3C).
Easily integrable with backend languages such as PHP and Node.js.
Like most things, HTML comes with a handful
of strengths and limitations.
Cons:
Mostly used for static web pages. For dynamic functionality, you
may need to use JavaScript or a backend language such as PHP.
It does not allow the user to implement logic. As a result, all web
pages need to be created separately, even if they use the same
elements, e.g. headers and footers.
Some browsers adopt new features slowly.
Browser behavior is sometimes hard to predict (e.g. older browsers
don’t always render newer tags).
How are HTML, CSS, and JavaScript related?
How are HTML, CSS, and JavaScript
related?
While HTML is a powerful language, it isn’t enough to
build a professional and fully responsive website. We
can only use it to add text elements and create the
structure of the content.
However, HTML works extremely well with two other
frontend languages: CSS (Cascading Style Sheets),
and JavaScript. Together, they can achieve rich user
experience and implement advanced functions.
How are HTML, CSS, and JavaScript
related?
CSS is responsible for stylings such as background,
colors, layouts, spacing, and animations.
JavaScript lets you add dynamic functionality such
as sliders, pop-ups, and photo galleries.
Think of HTML as a naked person, CSS as the
clothing, and JavaScript as movements and
manner.
So…What is HTML?
HTML is the main markup language of the web. It
runs natively in every browser and is maintained by
the World Wide Web Consortium.
You can use it to create the content structure of
websites and web applications. It’s the lowest
level of frontend technologies, that serves as the
basis for styling you can add with CSS and
functionality you can implement using JavaScript.

Mais conteúdo relacionado

Mais procurados

Introduction to html
Introduction to htmlIntroduction to html
Introduction to htmlvikasgaur31
 
Contextualized online search and research skill
Contextualized online search and research skillContextualized online search and research skill
Contextualized online search and research skillAngela Giva
 
Div tag presentation
Div tag presentationDiv tag presentation
Div tag presentationalyssa_lum11
 
Advanced Word Processing Skills - Empowerment Technologies
Advanced Word Processing Skills - Empowerment TechnologiesAdvanced Word Processing Skills - Empowerment Technologies
Advanced Word Processing Skills - Empowerment TechnologiesMark Jhon Oxillo
 
Computer Hardware Servicing Learner's Material Grade 10
Computer Hardware Servicing Learner's Material Grade 10Computer Hardware Servicing Learner's Material Grade 10
Computer Hardware Servicing Learner's Material Grade 10Bogs De Castro
 
Empowerment technology
Empowerment technologyEmpowerment technology
Empowerment technologypizonaim
 
Rules of Netiquette
 Rules of Netiquette Rules of Netiquette
Rules of NetiquetteRochelle Nato
 
1.1 introduction to small basic
1.1   introduction to small basic1.1   introduction to small basic
1.1 introduction to small basicallenbailey
 
Common productivity tools: Advanced Word Processing Skills, Advanced Spreadsh...
Common productivity tools: Advanced Word Processing Skills, Advanced Spreadsh...Common productivity tools: Advanced Word Processing Skills, Advanced Spreadsh...
Common productivity tools: Advanced Word Processing Skills, Advanced Spreadsh...Edgar Dumalaog Jr.
 
Computer Hardware: Parts & Functions
Computer Hardware: Parts & FunctionsComputer Hardware: Parts & Functions
Computer Hardware: Parts & FunctionsRay Monterola
 
Basic Web Design Principles and Elements
Basic Web Design Principles and ElementsBasic Web Design Principles and Elements
Basic Web Design Principles and ElementsEromRamos
 
Ms publisher parts and functions
Ms publisher parts and functionsMs publisher parts and functions
Ms publisher parts and functionsLeona Rose Beltran
 
Word 2016 module 1 ppt presentation
Word 2016 module 1 ppt presentationWord 2016 module 1 ppt presentation
Word 2016 module 1 ppt presentationdgdotson
 
Office productivity tools
Office productivity toolsOffice productivity tools
Office productivity toolsUllees Selim
 
Demonstration lesson-plan-in-ict grade 11
Demonstration lesson-plan-in-ict grade 11Demonstration lesson-plan-in-ict grade 11
Demonstration lesson-plan-in-ict grade 11Luffy Kun
 

Mais procurados (20)

Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
HTML Lesson 1
HTML Lesson 1HTML Lesson 1
HTML Lesson 1
 
Contextualized online search and research skill
Contextualized online search and research skillContextualized online search and research skill
Contextualized online search and research skill
 
A history of html
A history of htmlA history of html
A history of html
 
Div tag presentation
Div tag presentationDiv tag presentation
Div tag presentation
 
Advanced Word Processing Skills - Empowerment Technologies
Advanced Word Processing Skills - Empowerment TechnologiesAdvanced Word Processing Skills - Empowerment Technologies
Advanced Word Processing Skills - Empowerment Technologies
 
Ms powerpoint 2013
Ms powerpoint 2013Ms powerpoint 2013
Ms powerpoint 2013
 
Computer Hardware Servicing Learner's Material Grade 10
Computer Hardware Servicing Learner's Material Grade 10Computer Hardware Servicing Learner's Material Grade 10
Computer Hardware Servicing Learner's Material Grade 10
 
Empowerment technology
Empowerment technologyEmpowerment technology
Empowerment technology
 
Rules of Netiquette
 Rules of Netiquette Rules of Netiquette
Rules of Netiquette
 
1.1 introduction to small basic
1.1   introduction to small basic1.1   introduction to small basic
1.1 introduction to small basic
 
Common productivity tools: Advanced Word Processing Skills, Advanced Spreadsh...
Common productivity tools: Advanced Word Processing Skills, Advanced Spreadsh...Common productivity tools: Advanced Word Processing Skills, Advanced Spreadsh...
Common productivity tools: Advanced Word Processing Skills, Advanced Spreadsh...
 
EMPOWERMENT TECHNOLOGIES - LESSON 5
EMPOWERMENT TECHNOLOGIES - LESSON 5EMPOWERMENT TECHNOLOGIES - LESSON 5
EMPOWERMENT TECHNOLOGIES - LESSON 5
 
PowerPoint Tutorial
PowerPoint TutorialPowerPoint Tutorial
PowerPoint Tutorial
 
Computer Hardware: Parts & Functions
Computer Hardware: Parts & FunctionsComputer Hardware: Parts & Functions
Computer Hardware: Parts & Functions
 
Basic Web Design Principles and Elements
Basic Web Design Principles and ElementsBasic Web Design Principles and Elements
Basic Web Design Principles and Elements
 
Ms publisher parts and functions
Ms publisher parts and functionsMs publisher parts and functions
Ms publisher parts and functions
 
Word 2016 module 1 ppt presentation
Word 2016 module 1 ppt presentationWord 2016 module 1 ppt presentation
Word 2016 module 1 ppt presentation
 
Office productivity tools
Office productivity toolsOffice productivity tools
Office productivity tools
 
Demonstration lesson-plan-in-ict grade 11
Demonstration lesson-plan-in-ict grade 11Demonstration lesson-plan-in-ict grade 11
Demonstration lesson-plan-in-ict grade 11
 

Semelhante a Grade 10 COMPUTER

WT Module-1.pdf
WT Module-1.pdfWT Module-1.pdf
WT Module-1.pdfRamyaH11
 
Web topic 2 html
Web topic 2  htmlWeb topic 2  html
Web topic 2 htmlCK Yang
 
Vskills certified html5 developer Notes
Vskills certified html5 developer NotesVskills certified html5 developer Notes
Vskills certified html5 developer NotesVskills
 
What is html xml and xhtml
What is html xml and xhtmlWhat is html xml and xhtml
What is html xml and xhtmlFkdiMl
 
CSE-HTML-PPT.pptx
CSE-HTML-PPT.pptxCSE-HTML-PPT.pptx
CSE-HTML-PPT.pptxPsKulkarni1
 
Vskills certified html designer Notes
Vskills certified html designer NotesVskills certified html designer Notes
Vskills certified html designer NotesVskills
 
Grade 7_HTML.pptx
Grade 7_HTML.pptxGrade 7_HTML.pptx
Grade 7_HTML.pptxshilpak0307
 
Internet programming notes
Internet programming notesInternet programming notes
Internet programming notesDurgadevi palani
 
CSE-HTML-PPT.pptx
CSE-HTML-PPT.pptxCSE-HTML-PPT.pptx
CSE-HTML-PPT.pptxAmbika S
 
HTML element is everything between the start tag and the end tag
HTML element is everything between the start tag and the end tagHTML element is everything between the start tag and the end tag
HTML element is everything between the start tag and the end tagssuser6478a8
 

Semelhante a Grade 10 COMPUTER (20)

WT Module-1.pdf
WT Module-1.pdfWT Module-1.pdf
WT Module-1.pdf
 
Html
HtmlHtml
Html
 
Web topic 2 html
Web topic 2  htmlWeb topic 2  html
Web topic 2 html
 
Vskills certified html5 developer Notes
Vskills certified html5 developer NotesVskills certified html5 developer Notes
Vskills certified html5 developer Notes
 
Html5
Html5Html5
Html5
 
Html5
Html5Html5
Html5
 
What is html xml and xhtml
What is html xml and xhtmlWhat is html xml and xhtml
What is html xml and xhtml
 
CSE-HTML-PPT.pptx
CSE-HTML-PPT.pptxCSE-HTML-PPT.pptx
CSE-HTML-PPT.pptx
 
Vskills certified html designer Notes
Vskills certified html designer NotesVskills certified html designer Notes
Vskills certified html designer Notes
 
Dynamic html (#1)
Dynamic  html (#1)Dynamic  html (#1)
Dynamic html (#1)
 
Grade 7_HTML.pptx
Grade 7_HTML.pptxGrade 7_HTML.pptx
Grade 7_HTML.pptx
 
Internet programming notes
Internet programming notesInternet programming notes
Internet programming notes
 
CSE-HTML-PPT.pptx
CSE-HTML-PPT.pptxCSE-HTML-PPT.pptx
CSE-HTML-PPT.pptx
 
Html
HtmlHtml
Html
 
Html Concept
Html ConceptHtml Concept
Html Concept
 
Html
HtmlHtml
Html
 
WHAT IS HTML.pdf
WHAT IS HTML.pdfWHAT IS HTML.pdf
WHAT IS HTML.pdf
 
WHAT IS HTML.pdf
WHAT IS HTML.pdfWHAT IS HTML.pdf
WHAT IS HTML.pdf
 
WHAT IS HTML.pdf
WHAT IS HTML.pdfWHAT IS HTML.pdf
WHAT IS HTML.pdf
 
HTML element is everything between the start tag and the end tag
HTML element is everything between the start tag and the end tagHTML element is everything between the start tag and the end tag
HTML element is everything between the start tag and the end tag
 

Mais de Joel Linquico (20)

Computer 4
Computer 4Computer 4
Computer 4
 
Grade 7 computer
Grade 7 computerGrade 7 computer
Grade 7 computer
 
What is genetics
What is geneticsWhat is genetics
What is genetics
 
Grade 9 COMPUTER
Grade 9 COMPUTERGrade 9 COMPUTER
Grade 9 COMPUTER
 
GRADE 10 STEM
GRADE 10 STEMGRADE 10 STEM
GRADE 10 STEM
 
GRADE 10 COMPUTER
GRADE 10 COMPUTERGRADE 10 COMPUTER
GRADE 10 COMPUTER
 
GRADE 8 TADT2
GRADE 8 TADT2GRADE 8 TADT2
GRADE 8 TADT2
 
Grade 8 COMPUTER
Grade 8 COMPUTERGrade 8 COMPUTER
Grade 8 COMPUTER
 
GRADE 7 SCIENCE
GRADE 7 SCIENCEGRADE 7 SCIENCE
GRADE 7 SCIENCE
 
GRADE 7 COMPUTER
GRADE 7 COMPUTERGRADE 7 COMPUTER
GRADE 7 COMPUTER
 
Grade 6 Mapeh
Grade 6 MapehGrade 6 Mapeh
Grade 6 Mapeh
 
Grade 6 Computer
Grade 6 Computer Grade 6 Computer
Grade 6 Computer
 
Grade 5 Computer
Grade 5 ComputerGrade 5 Computer
Grade 5 Computer
 
Grade 4 Computer
Grade 4 Computer Grade 4 Computer
Grade 4 Computer
 
Grade 4 Araling Panlipunan
Grade 4 Araling Panlipunan Grade 4 Araling Panlipunan
Grade 4 Araling Panlipunan
 
Grade 6 computer
Grade 6 computer Grade 6 computer
Grade 6 computer
 
Grade 6 health
Grade 6 healthGrade 6 health
Grade 6 health
 
Grade 6 physical education
Grade 6 physical educationGrade 6 physical education
Grade 6 physical education
 
Grade 6 arts
Grade 6 artsGrade 6 arts
Grade 6 arts
 
Grade 6 MUSIC
Grade 6 MUSICGrade 6 MUSIC
Grade 6 MUSIC
 

Último

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 

Último (20)

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 

Grade 10 COMPUTER

  • 2. What is HTML? The Basics of Hypertext Markup Language Explained
  • 3. What is HTML? The Basics of Hypertext Markup Language Explained HTML stands for Hypertext Markup Language. It allows the user to create and structure sections, paragraphs, headings, links, and blockquotes for web pages and applications. HTML is not a programming language, meaning it doesn’t have the ability to create dynamic functionality. Instead, it makes it possible to organize and format documents, similarly to Microsoft Word.
  • 4. When working with HTML we use simple code structures (tags and attributes) to mark up a website page. For example, we can create a paragraph by placing the enclosed text within a starting <p> and closing </p> tag. • <p>This is how you add a paragraph in HTML.</p> • <p>You can have more than one!</p>
  • 6. The History of HTML HTML was invented by Tim Berners-Lee, a physicist at the CERN research institute in Switzerland. He came up with the idea of an Internet-based hypertext system. Hypertext means a text that contains references (links) to other texts that viewers can access immediately. He published the first version of HTML in 1991, consisting of 18 HTML tags. Since then, each new version of the HTML language came with new tags and attributes (tag modifiers) to the markup.
  • 7. The History of HTML According to Mozilla Developer Network’s HTML Element Reference, currently, there are 140 HTML tags, although some of them are already obsolete (not supported by modern browsers). Due to a quick rise in popularity, HTML is now considered an official web standard. The HTML specifications are maintained and developed by the World Wide Web Consortium (W3C). You can check out the latest state of the language anytime on W3C’s website.
  • 8. The History of HTML The biggest upgrade of the language was the introduction of HTML5 in 2014. It added several new semantic tags to the markup, that reveal the meaning of their own content, such as <article>, <header>, and <footer>.
  • 10. How Does HTML Work? HTML documents are files that end with a .html or .htm extension. You can view then using any web browser (such as Google Chrome, Safari, or Mozilla Firefox). The browser reads the HTML file and renders its content so that internet users can view it. Usually, the average website includes several different HTML pages. For instance: home pages, about pages, contact pages would all have separate HTML documents.
  • 11. How Does HTML Work? Each HTML page consists of a set of tags (also called elements), which you can refer to as the building blocks of web pages. They create a hierarchy that structures the content into sections, paragraphs, headings, and other content blocks. Most HTML elements have an opening and a closing that use the <tag></tag> syntax.
  • 12. Below, you can see a code example of how HTML elements can be structured: • <div> • <h1>The Main Heading</h1> • <h2>A catchy subheading</h2> • <p>Paragraph one</p> • <img src="/" alt="Image"> • <p>Paragraph two with a <a href="https://example.com">hyperlink</a></p> • </div>
  • 13. • The outmost element is a simple division (<div></div>) you can use to mark up bigger content sections. • It contains a heading (<h1></h1>), a subheading (<h2></h2>), two paragraphs (<p></p>), and an image (<img>). • The second paragraph includes a link (<a></a>) with a href attribute that contains the destination URL. • The image tag also has two attributes: src for the image path and alt for the image description.
  • 14. Overviewing The Most Used HTML Tags
  • 15. HTML tags have two main types: block- level and inline tags. 1. Block-level elements take up the full available space and always start a new line in the document. Headings and paragraphs are a great example of block tags. 2. Inline elements only take up as much space as they need and don’t start a new line on the page. They usually serve to format the inner contents of block- level elements. Links and emphasized strings are good examples of inline tags.
  • 16. Block-Level Tags The three block level tags every HTML document needs to contain are <html>, <head>, and <body>. 1. The <html></html> tag is the highest level element that encloses every HTML page. 2. The <head></head> tag holds meta information such as the page’s title and charset. 3. Finally, the <body></body> tag encloses all the content that appears on the page.
  • 17. Block-Level Tags 1. <html> 2. <head> 3. <!-- META INFORMATION --> 4. </head> 5. <body> 6. <!-- PAGE CONTENT --> 7. </body> 8. </html>
  • 18. Block-Level Tags •Headings have 6 levels in HTML. They range from <h1></h1> to <h6></h6>, where h1 is the highest level heading and h6 is the lowest one. Paragraphs are enclosed by <p></p>, while blockquotes use the <blockquote></blockquote> tag.
  • 19. Block-Level Tags • Divisions are bigger content sections that typically contain several paragraphs, images, sometimes blockquotes, and other smaller elements. We can mark them up using the <div></div> tag. A div element can contain another div tag inside it as well.
  • 20. Block-Level Tags You may also use <ol></ol> tags for ordered lists and <ul></ul> for unordered ones. Individual list items must be enclosed by the <li></li> tag. For example, this is how a basic unordered list looks like in HTML:
  • 21. Block-Level Tags 1. <ul> 2. <li>List item 1</li> 3. <li>List item 2</li> 4. <li>List item 3</li> 5. </ul>
  • 22. Inline Tags Many inline tags are used to format text. For example, a <strong></strong> tag would render an element in bold, whereas <em></em> tags would show it in italics. Hyperlinks are also inline elements that require <a></a> tags and href attributes to indicate the link’s destination: 1. <a href="https://example.com/">Click me!</a> Images are inline elements too. You can add one using <img> without any closing tag. But you will also need to use the src attribute to specify the image path, for example: 1. <img src="/images/example.jpg" alt="Example image"> If you want to learn more HTML tags, consider checking our complete HTML cheat sheet (which is also available for download).
  • 23. HTML Evolution. What Differs Between HTML and HTML5?
  • 24. HTML Evolution. What Differs Between HTML and HTML5? Since the first days, HTML has gone through an incredible evolution. W3C constantly publish new versions and updates, while historical milestones get dedicated names as well. HTML4 (these days commonly referred to as “HTML”) was published in 1999, while the latest major version came out in 2014. Named HTML5, the update has introduced many new features to the language.
  • 25. HTML Evolution. What Differs Between HTML and HTML5? One of the most anticipated features of HTML5 is native support for audio and video embedding. Instead of using Flash player, we can simply embed videos and audio files to our web pages using the new <audio></audio> and <video></video> tags. It also includes in-built support for scalable vector graphics (SVG) and MathML for mathematical and scientific formulas.
  • 26. HTML Evolution. What Differs Between HTML and HTML5? HTML5 introduced a few semantic improvements as well. The new semantic tags inform browsers about the meaning of content, which benefits both readers and search engines. The most popular semantic tags are <article></article>, <section></section>, <aside></ aside>, <header></header>, and <footer></footer>. To find amore unique differences, consider checking our in- depth HTML and HTML5 comparison.
  • 27. Pros and Cons of HTML
  • 28. Like most things, HTML comes with a handful of strengths and limitations. Pros: A widely used language with a lot of resources and a huge community behind. Runs natively in every web browser. Comes with a flat learning curve. Open-source and completely free. Clean and consistent markup. The official web standards are maintained by the World Wide Web Consortium (W3C). Easily integrable with backend languages such as PHP and Node.js.
  • 29. Like most things, HTML comes with a handful of strengths and limitations. Cons: Mostly used for static web pages. For dynamic functionality, you may need to use JavaScript or a backend language such as PHP. It does not allow the user to implement logic. As a result, all web pages need to be created separately, even if they use the same elements, e.g. headers and footers. Some browsers adopt new features slowly. Browser behavior is sometimes hard to predict (e.g. older browsers don’t always render newer tags).
  • 30. How are HTML, CSS, and JavaScript related?
  • 31. How are HTML, CSS, and JavaScript related? While HTML is a powerful language, it isn’t enough to build a professional and fully responsive website. We can only use it to add text elements and create the structure of the content. However, HTML works extremely well with two other frontend languages: CSS (Cascading Style Sheets), and JavaScript. Together, they can achieve rich user experience and implement advanced functions.
  • 32. How are HTML, CSS, and JavaScript related? CSS is responsible for stylings such as background, colors, layouts, spacing, and animations. JavaScript lets you add dynamic functionality such as sliders, pop-ups, and photo galleries. Think of HTML as a naked person, CSS as the clothing, and JavaScript as movements and manner.
  • 33. So…What is HTML? HTML is the main markup language of the web. It runs natively in every browser and is maintained by the World Wide Web Consortium. You can use it to create the content structure of websites and web applications. It’s the lowest level of frontend technologies, that serves as the basis for styling you can add with CSS and functionality you can implement using JavaScript.