Introdution-To-Html Tags
Introdution-To-Html Tags
Anthony HInga
HTML CONTENTS
• INTRODUCTION OF HTML
• OBJECTIVE OF HTML
• WORLD WIDE WEB
• HTML TOOLS
• HTML TERMINOLGY
• HOW TO CREATE AN HTML DOCUMENT
• S A V I N G A N D V I E W I N G A H T M L DOCUMENT
• TEXT TEGS
• SPECIAL CHARTACTER
• ADVANTAGES OF HTML
• DISADVANTAGES OF 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 ( h e a d i n g s , p a r a g r a p h
s , t a b l e s , a n d s o o n ) o f t h e document with the HTML tags. To view
a mark-up document u s e r h a s t o o p e n t h e d o c u m e n t i n a b r
o w s e r . A b r o w s e r 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>
It is a Network of Networks
MARQUEE TAG
• This tag is used text horizontally across the
screen.it is mainly used to deliver a specfic
message to the visitor or to scroll Ads on a
page.
• Example: <marquee> hello world></marquee>
Attributes of marquee tag
</P>
<P>
HTML stands for Hypertext Markup Language.<BR>
It is used for creating web page. It is very simple<BR>
and easy to learn.<BR>
</P>
<PRE>
HTML stands for Hypertext Markup Language
It is used for creating web page. It is very simple
and easy to learn.
</PRE>
</BODY>
</HTML>
OUTPUT
• HTML Tutorial
HTML stands for Hypertext Markup Language. It is used for creating
web page. It is very simple and easy to learn.
• Easy to use
• Loose syntax (although, being too flexible will not comply with
standards).
• Supported on almost every browser, if not all browsers.
• Widely used; established on almost every website, if not all
websites.
• Very similar to XML syntax, which is increasingly used for data
storage.
• Free - You need not buy any software.
• Easy to learn & code even for novice programmers.
DISADVANTAGES OF HTML