Sunday, October 10, 2010

HTML Formatting Tags

This section includes the tags often used for formatting the HTML text. HTML uses diffrent types tags like <i> for italic, <b> for bold to formatting text of web page. formatting must to your web page. formatting also attracts users.

examples of formatting text:-
example 1:
HTML:
<font size=2 face="Helvetica" color=red>This illustrates the attributes of the font tag.</font>

Display:
This illustrates the attributes of the font tag. 

example 2:
HTML:
<font size="+1" face="Verdana" color="#AA5088">This illustrates the attributes of the font tag.</font> 


Display:
This illustrates the attributes of the font tag.


example 3:
HTML:
This <b>example</b> shows how <i>important</i> it is to use <u>tags</u>.

Display:
This example shows how important it is to use tags.  

Header Tags
The header tags <h1>, ... <h6> allows us to place additional importance on the text within such tags. <h1> has the largest size, and <h6> the smallest. Many search engines put additional weight on the texts within the header tags.

example 4:
HTML:
<h1>This is h1 text.</h1>
<h2>This is h2 text.</h2>
<h3>This is h3 text.</h3>
<h4>This is h4 text.</h4>
<h5>This is h5 text.</h5>
<h6>This is h6 text.</h6>

Display:

This is h1 text.

This is h2 text.

This is h3 text.

This is h4 text.

This is h5 text.
This is h6 text.
 <center>
The <center> tag causes all the text within the tag to be centered. An example is as follows:
Example 5:
HTML:
<center>This is centered text.</center>

Display:
This is centered text.

<br>
The <br> tag indicates a line break. This tag is most often used by itself, without a corresponding closing tag.

<p>
The <p> tag indicates a new paragraph. It is the same as <br><br>. This tag is most often used by itself, without a corresponding closing tag. 
 

No comments:

Post a Comment