Uploaded by Knowledge Soup

HTML Tags

advertisement
HTML Tags
S.No
Tags
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<HTML>
<HEAD>
<TITLE>
<BODY>
<SMALL>
<STRIKE>
<BIG>
<B>
<U>
<I>
<P>
<RIGHT>
<LEFT>
<CENTER>
<BR>
<MARQUEE>
<FONT>
<IMG>
<A>
<H1>
21
22
23
24
25
<H2>
<H3>
<H4>
<H5>
<H6>
Description
It is the root of the html document which is used to specify that the document is html.
Head tag is used to contain all the head element in the html file. It contains the title tag.
It is used to specify the title of the page like name for the tab.
It is used to define the body of html document. It contains image, tables, lists, … etc.
It is used to set the small font size of the content.
It is used to represent as deleted text. It crosses the text content.
It is used to set the big font size of the content.
It is used to specify bold content in html document.
It is used to set the content underline.
It is used to write the content in italic format.
It is used to define paragraph content in html document.
It is used to set the content into the right.
It is used to set the content into the left.
It is used to set the content into the center.
It is used to break the line.
It is used to scroll the text or image content.
It is used to specify the font size, font color and font-family in html document.
It is used to add image element in html document.
It is used to link one page to another page.
Heading tag. It is used to define the heading of html document.
It has biggest font size in bold.
Heading tag. It is used to define the heading of html document. It is smaller than <H1>.
Heading tag. It is used to define the heading of html document. It is smaller than <H2>.
Heading tag. It is used to define the heading of html document. It is smaller than <H3>.
Heading tag. It is used to define the heading of html document. It is smaller than <H4>.
Heading tag. It is used to define the heading of html document. It is smaller than <H5>.
It has least font size in bold.
Sample Program
<html>
<head>
<title>Learning Process
</title>
</head>
<body>
<u><h1 align="center"> HTML Introduction</h1></u>
<i><h2 align="left">Processing</h2><i>
<small><p>Definition-<html> </html>
This basically defines the document as web page. It also identifies the beginning and end of the
HTML document. All other tags must fall between the html tags.
<br>
<u>Header - <head> </head></u>
The header contains information about the document that will not appear on the actual page, such
as the title of the document, the author, which stylesheet to use and also meta tags.
<br>
<u>Title - <title> </title></u>
The title tag defines the title that will appear in the title bar of your web browser. The title must
appear between the head tags.
<br>
<U>Body - <body> </body></u>
The body tags contain all the information and other visible content on the page. All your images,
links and plain text must go between the <body> and </body> tags.
</p>
</small>
<img src="D:\\re.jpg">
<marquee>
<h3>Be Positive, Think Positive</h3>
<h4>Be Positive, Think Positive</h4>
<h5>Be Positive, Think Positive</h5>
<h6>Be Positive, Think Positive</h6>
</marquee>
<font face="comic sans MS">
<strike><a href="www.youtube.com">YOUTUBE</a></strike>
</font>
</body>
</html>
Download