Html Introduction

HTML :- HTML Stands For HYPER TEXT MARKUP LANGUAGE

It is the Basic Language Which is Used to Create the Webpage.

SGML (Standard Generalized Markup Language) 

TAG :- An HTML Document Consists of Text Along with HTML Element Commonly Known as Tag. 

There are Two Types of Tags:- 
1. CONTAINER TAG :- These Are The Tags Which Have Starting As Well as Ending Tag. 
Example:- <P> </P>
2. EMPTY TAG :- These Are The Tags Which Have Only Starting Tag.
Example :- <BR>
<> ANGULAR BRACKET

DOCUMENT TAG  
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY>
</BODY>
</HTML> 

LIFO (LAST IN FIRST OUT)

<HTML> :- This tag is used to indicate the starting of the web page. It is a container tag. 

<HEAD> :- It is used to define the entire properties of the web page.

<TITLE> :- It is another important tag under the head section from which are abce to set the title of web browser. Means whatever between the <TITLE> and </TITLE> will be appeared at the title bar of the browser window.

<BODY> :- This is very important tag which consists all the text which will be written on the web page.      

No comments:

Post a Comment