LET'S BEGIN WITH THIRD LECTURE!

In our third lecture, lets move a step forward and explore new things together.

The main topics which we will cover today are,

* Superscript

* Subscript

* Unordered List

* Ordered List

    


Now lets have a detailed look on the following headings,

1- Superscript:

* To add a power of anything, we use superscript.

* Tag of the superscript is,

                                            <sup> </sup>

e.g.

* I f we want to write 2 and the power of 2, we will write it as,

                                      <p> 2  <sup>2</sup>=4</p>


2- Subscript:

* To add power under something, we use subscript.
* Tag of subscript is,
                    
                                            <sub> </sub>
e.g.
* Formula of water is like,
                                    <p> H <sub>2</sub>O</p>

3- Unordered List:

* I f we want to add something in bullets we use unordered list.
* Tag of unordered list is like,
                                            <ul>
                                                    <li>Ali</li>
                                                    <li>Hamza</li>
                                                    <li>Ahil</li> 
                                            </ul>

4- Ordered List:

* If we want to allot numbers in a list or any alphabetic bullet to our list will be the ordered list.
* Tag of ordered list is,
                                            <ol>
                                                    <li>Saman</li>
                                                    <li>Hadia</li>
                                                    <li>Ehtisham</li> 
                                            </ol>