how to make font bold code example
Example 1: css bold text
.text {
font-weight: bold;
}
Example 2: how to only make a part bold in css
<!-- It's better if you do it in your HTML file instead -->
<p><strong>This is bold</strong>this is not</p>