HTML
HTML
TO HTML
INTRODUCTION OF HTML
• HTML is a language for describing web pages.
• HTML stands for Hyper Text Markup Language
• HTML is not a programming language, it is
a markup language
• A markup language is a set of markup tags
• HTML uses markup tags to describe web
pages
INTRODUCTION OF HTML
• HTML (Hypertext Markup Language) is used to create document on the
World Wide Web. It is simply a collection of certain key words called ‘Tags’
that are helpful in writing the document to be displayed using a browser
on Internet.
It is a platform independent language that can be used
on any platform such as Windows, Linux, Macintosh, and so on. To display
a document in web it is essential to mark-up the different e l eme n t s (
headings, paragraphs, tables, and so on) of the
document with the HTML tags. To view a mark-up document u s e r h a s
to open the document in a browser. A browser
understands and interpret the HTML tags, identifies the structure of the
document (which part are which) and makes decision about presentation
(how the parts look) of the document.
HTML also provides tags to make the document look
attractive using graphics, font size and colors. User can make a link to the
other document or the different section of the same document by
creating Hypertext Links also known as Hyperlinks
OBJECTIVE OF HTML
• <HTML>
• <HEAD>
• .............
• .............
• .............
• </HEAD>
• <BODY>
• .............
• .............
• .............
• </BODY>
• </HTML>
HEAD Tag <HEAD>
• HEAD tag comes after the HTML start tag. It
contains TITLE tag to give the document a title
that displays on the browsers title bar at the top.
The Format is:
<HEAD>
<TITLE>
Your title goes here
</TITLE>
</HEAD>
BODY Tag <BODY>
• The BODY tag contains all the text and graphics of the document
with all the HTML tags that are used for control and formatting of
the page.The Format is:
<BODY>
Your Document goes here
</BODY>