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...

HTML intro

  • 1.
  • 2.
    TOPICS: .HISTORY OF HTML .BASICELEMENTS 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: <!doctype HTML> <html> <head> //title, favicon, meta , styles, libraries , plugins </head> <body> //the main content of a webpage </body> </html>
  • 7.