what are different ways to make bold letter in html?

well, if you want to know how to make bold letter with html you can do it with HTML tags or with css

<strong>Bold Letters using strong tag</strong>

<b>Bold Letters using b tag</b>

<div style="font-weight: bold">Bold Letters using css</div>

did this help you? or do you know any other ways?