There are several ways:
Just put it inline:<b>Hello</b>
Put it in a h:outputText with a style:<h:outputText value="Hello" style="font-weight: bold;" />
Put it raw in h:outputText with HTML escape set to false:<h:outputText value="<b>Hello</b>" escape="false" />