Tuesday, 27 December 2011

Episode 5 : HTML Formatting

HTML Formatting

We need to text formatting in our pages and we use the HTML formatting tags for formatting text. Now we know some formatting tags such as,

Tag
Description
<b>
For show bold text
<big>
For show big size text
<i>
For show italic text
<small>
For show small size text
<sub>
For show the subscript text
<sup>
For show the superscript text
<del>
It show the line inside the text
<address>
It use for address writing .


Now a simple example for HTML formatting :
<html>
   <head> < title > Text Formatting </title></head>
<body>
   <b> This is bold text </b> <br />
<i> This is italic text </i> <br />
<small> This is small text </small>
</body>
</html>
Output : Save it and open it on your browser

This is bold text
This is italic text
This is small text




Written by “Shojib”.

No comments:

Post a Comment