Angular Certification Training
- 16k Enrolled Learners
- Weekend
- Live Class
This article will introduce you to simple yet a very important and core concept that is Strong and bold tag in HTML. Following pointers will be covered in this article,
Strong and bold tag in HTML
This is the text where anything that is entered between <strong>…</strong> element will be displayed as very important text to the reader. In this <strong> tag the text entered in opening <strong> tag and closing </strong> tag text within these will be mentioned as a important text.
Below giving an example to the <strong> tag.
Moving on with this article on Strong and bold tag in HTML, let us see how these tags work,
<!DOCTYPE html> <html> <head> <title>Strong text</title> </head> <body> I'm into <strong> Edureka </strong> company. </body> </html>
Moving on with this article on Strong and bold tag in HTML,
This is the text where anything that is entered between <b>…</b> element will be displayed as a bold text to the reader. As there is no much difference in these two tags. These strong and bold tags and different but does the same function. To make the particular text in bold or strong form. If any text entered within the opening <b> and closing </b> those texts will be in bold and will let the user know that it is important so it’s in bold. Below showing the example for the bold tag and even you can alter and make it more effective.
Sample Program
<!DOCTYPE html> <html> <head> <title>Bold text</title> </head> <body> I'm into <b> Edureka </b> company. </body> </html>
Output
This brings us to the end of this article on Strong and Bold tag in HTML
Now that you know what is HTML, check out the Web Development Certification Training by Edureka. Web Development Certification Training will help you Learn how to create impressive websites using HTML5, CSS3, Twitter Bootstrap 3, jQuery and Google APIs and deploy it to Amazon Simple Storage Service(S3).
Got a question for us? Please mention it in the comments section of “What is HTML?” and we will get back to you.