b Element
Description
The b
element marks a span of text indicating any extra emphasis or importance.
The style convention for b
element is b{font-weight:bolder;}
.
Example
The following code shows the b element in use.
<!DOCTYPE HTML>
<html>
<body>
I like <b>HTML</b> and <b>CSS</b>.
</body><!-- www . j a v a 2 s. co m-->
</html>