Welcome

Welcome to Kuaiyum HTML Blog

সোমবার, ৬ জুন, ২০১১

HTML Text Formatting and Practice-3


HTML uses tags like <b> for bold, <i> for italic, <u> for under line, <sub> for subscript, <sup> for supper script text………..
These HTML tags are called formatting tags 

HTML Text Formatting Tags

Tag
Description
Defines bold text
Defines big text
Defines emphasized text 
Defines italic text
Defines small text
Defines strong text
Defines subscripted text
Defines superscripted text
Defines inserted text
Defines deleted text

Practice-3 HTML Text Formatting
<html>
<body>
<p><b>This text is bold</b></p>
<p><strong>This text is strong</strong></p>
<p><big>This text is big</big></p>
<p><i>This text is italic</i></p>
<p><em>This text is emphasized</em></p>
<p><code>This is computer output</code></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>
(a+b)<sup>2</sup>=a<sup>2</sup>+2ab+b<sup>2</sup> This is superscript<br/>
H<sub>2</sub>O This is subscript
</body>
</Html>

The Output look like the following:

This text is bold
This text is strong
This text is big
This text is italic
This text is emphasized
This is computer output
This is subscript and superscript
(a+b)2=a2+2ab+b2 This is superscript
H2O This is subscript

1 টি মন্তব্য: