Sie sind auf Seite 1von 10

Content

WHAT IS HTML ?
HOW HTML WORK ?
HTML VERSIONS
CODING
ADVANTAGES
DISADVANTAGES
TAGS
What is HTML?

• HTML is the standard markup language for creating


Web pages.
• HTML stands for Hyper Text Markup Language
• HTML describes the structure of Web pages using
markup
• HTML elements are the building blocks of HTML pages
• HTML elements are represented by tags
• HTML tags label pieces of content such as "heading",
"paragraph", "table", and so on
• Browsers do not display the HTML tags, but use them
to render the content of the page
How HTML Works?
The working of HTML language is quite simple
and easy to understand. All you need to is
follow these steps given below
Open a notepad file.
Create some bunch of short codes using tag.
Save it with extension .html
Now run it using any browser.
HTML Versions

• Since the early days of the web, there have


been many versions of HTML:
Version Year

HTML 1991

HTML 2.0 1995

HTML3.2 1997

HTML4.01 1999

XHTML 2000

HTML5 2014
coding
• Simple HTML code to say Hello World.
<html>
<head>
<title>Test Page
</title></head>
<body>
Hello World
</body>
</html>
Advantages of Knowing HTML
Language
• Almost all the new technologies like javascript,
java, asp and php etc.
• One can easily study the code of other website by
just right clicking on the page and going to the
source of the page.
• It is the most easy language in computer field.
• Mostly all the web designers uses HTML
languages.
• It is very easy to insert HTML code in between
ASP and JavaScript.
Disadvantages of HTML Languages
• If you want to create dynamic pages then HTML is
not for you, you can create only static page with
HTML.
• For a simple web page you need to write a long
code.
• HTML is not that much secure language.
• HTML is quite complex if you want to write a long
code for any webpage.
• HTML language is not that much flexible as other
languages are.
DESCRIPTION OF HTML TAGS
• <HTML>...</HTML> Encloses the entire HTML document.
This tag tells the browser that it is reading an HTML
document and to display as such. Without this tag your
information will display as source code on the client's
browser.
– An HTML document is divided into a HEAD and BODY.
• <HEAD>...</HEAD> Encloses the head of the HTML
document. The HEAD element contains information about
the document.
– Can include: <TITLE>, <ISINDEX>, <BASE>, <META>, <NEXTID>,
<LINK>
• <BODY>...</BODY> Encloses the body (text, images, tags,
links) of the HTML document. The BODY element contains
the information in the document.
– Contains all tags except the <HTML> and those in the <HEAD>

Das könnte Ihnen auch gefallen