ওয়েব পেইজের টেক্সটকে সুন্দর ও  দৃষ্টিনন্দনভাবে উপস্থাপন করার জন্য ফরমেটিং ট্যাগ ব্যবহার করা হয়। HTML পেইজের টেক্সট এর সাথে বিভিন্ন ফরমেটিং ট্যাগ ব্যবহার করে উপাত্ত ও  তথ্যকে ফরমেটিং করা হয়ে থাকে।

 

Tag এর ব্যবহার

 

           <b>

           <strong>

           <u>

           <ins>

           <i>

           <em>

           <del>

           <strike>

           <s>

           <q>

           <big>

           <small>

           <pre>

           <sub>

           <sup>

HTML CODE

<html>

 

<head>

<title> Formatting Tag </title>

</head>

 

    <body>

        <b>This is Blod Text</b> <br/>

        <strong>This is strong Text</strong> <br/>

        <u>This is unferline Text</u>

        <ins>This is inserted Text</ins>

        <i>This is Italic Text</i>

         <em>This is emphasized Text</em>

        <del>This is deleted Text</del>

        <strike>This is strike Text</strike>

        <s>This is strike Text</s>

        <q>This is Blockquote text</q>

 

        <big>This is big Text</big>

        <small>This is small Text</small>

    </body>

 

</html>

OUTPUT

image1739329201032.png

WEB PAGE এ Formatting

 

Tag [<pre>] এর ব্যবহার

HTML CODE

 

<html>  <head>   <title> Formatting Tag </title>  </head> <body> <pre> This is    Preformatted text </pre> </body> </html>

OUTPUT

image1739329201046.png

WEB PAGE এ Formatting

 

Tag [<Sub>] এর ব্যবহার

HTML CODE

<html>  <head>   <title> Formatting Tag </title>  </head> <body>  <p> H<sub>2</sub>O </p>  <p> H<sub>2</sub>SO<sub>4</sub> </p>  <p>(100)<sub>10</sub> + (3E)<sub>16</sub> = (242)<sub>8</sub> </p> </body> </html>

OUTPUT

image1739329201059.png

 

WEB PAGE এ Formatting Tag [<Sup>] এর ব্যবহার

HTML CODE

 

<html>  <head>   <title> Formatting Tag </title>  </head> <body>  <p> A<sup>2</sup> + B<sup>2</sup> </p>  <p> (a+b)<sup>2</sup>= a<sup>2</sup> + 2ab + b<sup>2</sup> </p>  <p>A<sup>B<sup>C<sup>D</sup></sup></sup></p> </body> </html>

OUTPUT

 

image1739329201085.png