Bootstrap bold text
Use strong to make bold text
We can use <strong>
tag to
emphasize a snippet of text with a heavier font-weight
.
<!DOCTYPE HTML>
<html>
<head>
<link href="http://java2s.com/style/bootstrap.min.css" rel="stylesheet">
</head><!-- w w w . jav a2 s . c o m-->
<body style='margin: 20px;'>
<strong>rendered as bold text</strong>
</body>
</html>