Ads

Breaking

Tuesday, July 21, 2020

What is HTML Text formatting | What is BOLD text in HTML | How to use bold text in HTML

You must be familiar with the ability of a word press to make a text bold , italicized , underlined , there are many more options to indicate how a text can appear and are as follows :-
  1. Bold Text
  2. Italic Text
  3. Underlined Text
  4. Strike Text
  5. Monospaced Text
  6. Superscript Text
  7. Subscript Text
  8. Inserted Text
  9. Deleted Text
  10. Larger Text
  11. Smaller Text

In this article I am going to show you how to use all of them one by one with step by step process .

1.Bold Text :-                                                                                

1. Open your text editor .

2. Write basic tags i.e. html , head , body . use title tag to write "Bold text example" in head section in order to understand which type of document you have made .



3.Write the paired paragraph tag inside body tag i.e. <p> and </p> and write paragraph you want to show the user in the main browsing area , to show I am writing "this is a paragraph to show Bold Text" .

 


4. Save this file with . html extension . I am saving this file as "bold_text_example.html" .


5. To see the result how this looks like open the saved file in any browser to see the result . In point number 6 we will use <b> tag to see the change in the result .


6. Use bold open and close tag<b> , </b> tag between "this is a paragraph to show Bold text" as "this is a paragraph to show  <b>Bold</b> text".


7. Save the file as "bold_text_example1.html" .


8. Open the saved file in any browser to see the result of Bold text tag "<b>" .

 


No comments:

Post a Comment