Bold tag: it shows like b tag<b>
This tag gives your text bold position. Use for formatting outpot.so call formatting tag. Some time in our text some data are important, as we are writing any news on current topic, some festivals date or your favorite quote, that should be highlight, so b tag is used for highlight our text. Means highlighted format.
How can implement:
This is standard of web page
Bold tag have one starting <b> tag and one ending </b> tag.
Just assume sometimes in our paragraph text, we write many lines. Some are more important then others, that really deserve to be highlighted.so making them bold we use to write on our webpage, like
<p><b>this text is bold</b></p>
Not only for text, we can also highlight our header.
<h><b>this heading is bold</b></h>
Example Code:
<html>
<body>
<h><b>this heading is bold</b></h>
<p><big>This text is big</big></p>
<html>
<body>