SlideShare a Scribd company logo
HTML
Presenting by:
Jyothi
Krishna
Likhitha
Mohammed
Naveen
TOPICS:
.HISTORY OF HTML
.BASIC ELEMENTS OF HTML
.PROGRAM STRUCTURE OF HTML
HISTORY OF HTML:
 FATHER OF INTERNET
Internet started in 1989 CERN organization EUROPEON
COUNCIL OF ORGANIZATION. By Tim Bernerslee.
 He also invented HTML from the origin of SGML(standup
generalized markup language in 1995.
 The first version of HTML is 2.0 which was released in 1995
and the latest version is HTML5
 W3c is the Head of the Internet.
What is HTML?
 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.
TOP COMPANIES USING HTML:
1.GOOGLE
2.AMAZON
3.YOUTUBE etc………
ELEMENTS OF HTML:
 HTML ELEMENT: is combination of HTML TAGS and CONTENT
EX: <h1> presentation</h1>
These are two type:
1.Paired tags/container tags/dependent tags
2.unpaired tags/empty tags/independent tags
 Paired tags:
The first tag can be referred to as the 'Opening Tag', and the second tag can be
called Closing Tag.
ex:: <h1> html</h1>
 Unpaired tags:
Unpaired tags are opened and do not have to be closed. They stand alone.
EX: <br>,<hr> and <img>
Attributes:
The properties of a HTML tags is called Attributes.
syntax:
<keyword prop=“”></keyword>
HTML Program Structure:
<!doc type HTML>
<html>
<head>
//title, favicon, meta , styles, libraries ,
plugins
</head>
<body>
//the main content of a webpage
</body>
</html>
THANK YOU...

More Related Content

PPTX
Html Concept
PPT
ITEC229_Chapter2_new.ppt
PPTX
Basics of HTML..pptx
PPTX
Lecture-1.pptx
PPT
1. html introduction
DOCX
DOCX
DOCX
Html Concept
ITEC229_Chapter2_new.ppt
Basics of HTML..pptx
Lecture-1.pptx
1. html introduction

Similar to HTML intro (20)

PPTX
Html5 Introduction For Beginners
PPTX
1 introduction
PDF
WT Module-1.pdf
PPTX
Introduction to HTML for my Special Class
PPTX
Lesson 2 - HTML Overview - History and Basic Syntax
PPT
PPT
Html5
PPT
PPT
PPT
PPT
PPT
Html5
PPTX
Html.pptx
PPTX
html -Hyper Text Markup Languagejjjjjjjjjjjjjjjjjjjjjjjjj
PPT
Html basics
PPTX
Html basic
PPTX
INTRODUCTION TO HTML.pptx
PPTX
Grade 7_HTML.pptx
PPT
Html birth &amp; evolution
PPTX
html5 project.pptx
Html5 Introduction For Beginners
1 introduction
WT Module-1.pdf
Introduction to HTML for my Special Class
Lesson 2 - HTML Overview - History and Basic Syntax
Html5
Html5
Html.pptx
html -Hyper Text Markup Languagejjjjjjjjjjjjjjjjjjjjjjjjj
Html basics
Html basic
INTRODUCTION TO HTML.pptx
Grade 7_HTML.pptx
Html birth &amp; evolution
html5 project.pptx

Recently uploaded (20)

PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
Institutional Correction lecture only . . .
PPTX
master seminar digital applications in india
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
RMMM.pdf make it easy to upload and study
PPTX
Cell Types and Its function , kingdom of life
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
human mycosis Human fungal infections are called human mycosis..pptx
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
102 student loan defaulters named and shamed – Is someone you know on the list?
Institutional Correction lecture only . . .
master seminar digital applications in india
Module 4: Burden of Disease Tutorial Slides S2 2025
202450812 BayCHI UCSC-SV 20250812 v17.pptx
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Chinmaya Tiranga quiz Grand Finale.pdf
O5-L3 Freight Transport Ops (International) V1.pdf
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
O7-L3 Supply Chain Operations - ICLT Program
RMMM.pdf make it easy to upload and study
Cell Types and Its function , kingdom of life
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3

HTML intro

  • 2. TOPICS: .HISTORY OF HTML .BASIC ELEMENTS OF HTML .PROGRAM STRUCTURE OF HTML
  • 3. HISTORY OF HTML:  FATHER OF INTERNET Internet started in 1989 CERN organization EUROPEON COUNCIL OF ORGANIZATION. By Tim Bernerslee.  He also invented HTML from the origin of SGML(standup generalized markup language in 1995.  The first version of HTML is 2.0 which was released in 1995 and the latest version is HTML5  W3c is the Head of the Internet.
  • 4. What is HTML?  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. TOP COMPANIES USING HTML: 1.GOOGLE 2.AMAZON 3.YOUTUBE etc………
  • 5. ELEMENTS OF HTML:  HTML ELEMENT: is combination of HTML TAGS and CONTENT EX: <h1> presentation</h1> These are two type: 1.Paired tags/container tags/dependent tags 2.unpaired tags/empty tags/independent tags  Paired tags: The first tag can be referred to as the 'Opening Tag', and the second tag can be called Closing Tag. ex:: <h1> html</h1>  Unpaired tags: Unpaired tags are opened and do not have to be closed. They stand alone. EX: <br>,<hr> and <img> Attributes: The properties of a HTML tags is called Attributes. syntax: <keyword prop=“”></keyword>
  • 6. HTML Program Structure: <!doc type HTML> <html> <head> //title, favicon, meta , styles, libraries , plugins </head> <body> //the main content of a webpage </body> </html>