Throughout the text and the titles on my webpage I need to make certain words bold and others need to be highlighted in a color.
I know before I would have used a
<b>
or perhaps a
<strong>
What is the HTML5 markup practice?
Also, do I need different markup for a bold word compared with a word that is just highlighted? Would a styled span suffice?
This is <span class="highlight">highlighted</span> and this is <b>bold!</b>
And what should I do in titles:
<h1>The title is <b>awesome</b></h1>