In this illustration we will discuss use of <b> tag in html5 and its implementation in the html document.
The <b> tag is used for setting the words in bold style. The <b> tag specifies the text in the document for clarifying with the surrounding text. The use of <b> tag will highlight the text/ title.
This tag convey extra importance on the text such as Keywords, Abstract, Headings etc.
This tag is used as last option when no other tag is found suitable.
The syntax for declaring the tag is:
| <b>Content</b> . |
The text which we want to show in bold format is written within the <b></b>tags.
Here is the example of implementing the <b> tag.
BoldTagExample.html.
| <!DOCTYPE html > <html> <head> <title> Example Bold(<b>) tag </title> </head> <body> you work on <b>JAVA</b> Technology. </body> </html> |
Output.
Note: See the browser compatible page for successfully rendering the program.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.