Bootstrap bold text
Description
We can use <strong>
tag to
emphasize a snippet of text with a heavier font-weight
.
Example
<!DOCTYPE HTML>
<html>
<head>
<link href="http://java2s.com/style/bootstrap.min.css" rel="stylesheet">
</head><!--from www . java2s . com-->
<body style='margin: 20px;'>
<strong>rendered as bold text</strong>
</body>
</html>