Programming Code Center(PCC)
[HTML]

(PCC)::[How-to-make-Strong-formatting-using-the-strong-element-in-HTML]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

<p>This text is normal.</p>

<p><strong>This text is strong.</strong></p>

</body>
</html>

Output :

This text is normal.

This text is strong.