JSFiddle - React, Tailwind, and code Playground
HTML
<h1>**This text should be bold**, <span class='notbold'>but this text should not</span></h1>
CSS
h1{
font-weight:bold;
}
.notbold{
font-weight:normal
}
<h1>**This text should be bold**, <span class='notbold'>but this text should not</span></h1>
h1{
font-weight:bold;
}
.notbold{
font-weight:normal
}