Hello, This is Arpan Tiwari presenting another important concept in web development.. I have completed this lecture by Anurag sir from PW Skills.. This lecture include different type of text formatting skills which are very useful in many cases likes as the concept of superscript and subscript are helpful when you are doing mathematically related things...
The first concept is we use h1,h2,....h6 tags for headings ,up to h4 it is significant as further its visibility decrease.. Suppose there are some headings which are important to note then we use heading tags to show them..
Now another concept is if we want to add text we usually use 'p' tag . We can add text accordingly anything.. The other thing is to make bold any line or words we basically use 'b' tag and just paste these words inside it we get the desired result.. We can also achieve same thing by using strong tag..
If we want to underline something which is important then we can use mark or em tag and just paste those words inside it.. now another thing is to underline the words we basically use the 'u' tag and just write those words inside it..
Another thing if we want to cut the words or numbers in a paragraph then we can use strike tag or 's' tag or del tag and just paste those words inside it we get the desired result.. We can also insert the words inside the paragraph.. Suppose something which is cut in paragraph on that place we want to insert another thing we can use it just write those words inside the 'ins' tag we get the result ..
In mathematical operation we use sub tag for subscript and sup for superscript for example if we want to write 2 power 10 power 2 then just write as given below..
<sub>2</sub>10 <sup>2</sup>
If we want to write the some words small and some big use small and big tag and just paste the words inside it.. For making abbreviation and definition we can use as follows..
<p><abbr title="Cascading Style Sheet">CSS</abbr><dfn>Lorem ipsum dolor sit amet.</dfn></p>
So this was all about this snippet I hope this will be helpful for you .. Thank you..