how to display thicker text in html code example
Example 1: 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>
Example 2: html bold text
<html>
<head>
<title>Bold text</title>
</head>
<body>
<p>Use the strong element to <strong>indicate strongly emphasized</strong> content.</p>
</body>
</html>