Why use <b> ?
When we need to bold inside a paragraph tag or other tags.
Then used <b> . How to use it <b> Text which we want to bold </b>
Syntax:
<p>
Hay hello web <b>developer</b> !!!.
</p>
Example:
<!DOCTYPE html>
<html >
<head>
<title>Basic get in </title>
</head>
<body>
<p>
Hay hello web <b>developer</b> !!!.
</p>
</body>
</html>
Output:
Post a Comment