> Suppose you want to bold something for stylistic reasons.
The whole point of the article is that you should use css for style and html for structure and semantics. Don't use markup for style. Have separate css file for that.
If you don't care or understand why that makes sense, just use bold.
But it is unavoidable to have to use markup for style.
You have to use some markup to indicate the span that needs to be bold. Yes, you could use a <span> instead, but that is still using html for style, and conveys less about the purpose of the tag.