INTRODUCTION TO HTML|

 Introduction to HTML



HTML stands for Hypertext Markup Language. It is the language for the documents to be displayed on web.IT SIMPLY MEANS THAT WHAT you see on the web is just because of html.
IN POINTS:-
  • TML 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.

Html Tags :- 
<html> </html> 
<head> </head>
<title> </title>
<body> </body>
<p> </p>
<H1 to H6 > </H1 to H6>

Using these tags:- 

These are the basic tags used in an html .
Every tag has an closing tag.
The HTML tag is used in starting and ending .
After that is used the head tag for the head of the template . 

Then we use title tag for title inside the head tag. 

Then we close the head tag . 

Then comes the body tag which contains all the content .
 We then use H1 to H6 tags as the required size of the text .

H1 

H2

H3

H4

H5 

H6 


These are the font sizes .

Thus we have learn basic knowledge.of an html document.

The structure of HTML document is :- 

HTML tag 

Head tag 

Title tag 

Title close 

Head close 

Body tag 

H tag 

H close 

P tag 

P close 

Body close 

Html close 












Page Title



My First Heading

My first paragraph.