Skip to main content

How to style html page with tags ?

 Content of this page

1)Bold Tag

2)Italic Tag

3)Underline  Tag

4)Subscript Tag

5) Superscript Tag

                                

                     Bold Tag

Bold tag is used to Bold or highlight the text ,word or paragraph by adding boldness to it.we can add this by using <b> tag.

<Body>
<b>hello world</b>
</body>

The text between the start and end of Bold tag will become Bold.

                     Italic Tag

Italic tag is used to tilt the letters in left side by which text look attractive. We use italic tag by <i> and ends up with </i> end tag. 

<Body>
<i>hello world</i>
</body>


                  Underline Tag

Mostly underline tag is used to highlight important texts, this tag is started by <u> and end with </u> end tag

<Body>
<u>hello world</u>
</body>

                 Subscript Tag


Subscript tag is used in subscript  text like (H2O) in this 2 is written in subscript. To make this type of words we use (<sub></sub>) this tag and the letter or number which we want to make small and shift it at bottom, we write that between this  tag

              Superscript Tag


Superscript tag is used in superscript  text like (10²,4³) in this 2 and  4 are written in superscript. To make this type of words we use (<sup></sup>) this tag and the letter or number which we want to make small and shift it at top, we write that between this  tag. 




Comments

Popular posts from this blog

Basic of HTML

                        HTML Html is a Hypertext Markup language ,which is used to develop web applications ,Android applications,etc. Browsers do not understand our communication language they have their own language in this blog we will learn one of them language  There are many languages which browsers support.Some of them are :-          DIFFERENT LANGUAGES

What are Tags and Attributes ?

The most important things you should know Today we will cover what are Tags and Attributes and how we use them in html  

Marquee Tag and paragraph Tag

  Content of the post 1)Marquee tag 2)Paragraph tag 3)Fieldset tag 4)Legend tag