0% found this document useful (0 votes)
27 views

HTML Lesson 1

HTML is a system of codes that can be used to create active web pages. It was created by Tim Berners-Lee in 1991 and consists of tags embedded in text to format and link documents. Common tags include <HTML> to enclose a document, <HEAD> for document information, <TITLE> for the title, and <BODY> for document content. Tags begin with "<" and end with ">" and usually come in pairs to open and close an element.

Uploaded by

ron2hedwig2zape
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views

HTML Lesson 1

HTML is a system of codes that can be used to create active web pages. It was created by Tim Berners-Lee in 1991 and consists of tags embedded in text to format and link documents. Common tags include <HTML> to enclose a document, <HEAD> for document information, <TITLE> for the title, and <BODY> for document content. Tags begin with "<" and end with ">" and usually come in pairs to open and close an element.

Uploaded by

ron2hedwig2zape
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 12

HTML

Hypertext Markup Language


 It is a system of codes that can be use to
create active document.
HTML  Is the language used to write Web pages
which consists of codes (tags) embedded
in the text of a document.
 HTML was created by Sir Tim Berners-
History of Lee in late 1991 but was not released
HTML officially, which was published in 1995 as
HTML 2.0.
 HTML 1.0 was released in 1993 with the
intention of sharing information which
can be readable and accessible via web
browsers.
History of
HTML  HTML 2.0, published in 1995; which
contains all the features of HTML 1.0
along with that few additional features.
 HTML 3.0, where Dave Raggett who
introduced a fresh paper or draft on
HTML.
History of
HTML  HTML 4.01 which is widely used and was a
successful version of HTML before HTML
5.0, which is currently released and used
worldwide.
 Tags are codes in an HTML document
which the browser reads and then
interprets for subsequent display to a
reader.
Tags
 Tags are not visible when an HTML
document is viewed in a browser, but their
effects are.
 Tags begin with the opening symbol "<"
and end with the closing symbol ">"; and
Tags usually come in pairs, one that begins an
action and one that ends it.
<HTML>

<HEAD>
Document <TITLE></TITLE>
</HEAD>
Structure
Tags <BODY>
</BODY>

</HTML>
Document <HTML> …… </HTML>
Structure
Encloses the entire HTML document.
Tags
Document <HEAD> …… </HEAD>
Structure The <HEAD> Elements contains all
information about the document in
Tags general.
Document <TITLE> …… </TITLE>
Structure The <TITLE> is contained in the <HEAD>
Tags of the document.
<BODY> …… </BODY>
Document The <BODY> element contains all the
Structure information which is part of the
document.
Tags

You might also like