bold tag in html
Html Bold Tag
1] bold tag is represented by the <b> tag.
2] html <b> tag display the written text in bold format.
3] html <b> strictly a presentational element.
Syntax :-
<b>
:
</b>
html bold tag :-
Program
<!DOCTYPE html>
<html>
<head>
<title>html bold tag </title>
</head>
<body>
<p>
Hi friends
<b> how are you </b> <!-- use the bold tag -->
</p>
<h5>I am fine</h5>
</body>
</html>
html bold tag :-
Output
Related Post :-
Post a Comment