[nobr]f:verbatim will take the HTML in the component root:<f:verbatim>
This <b>is</b> pure <i>HTML</i><br>Cool!
</f:verbatim>
h:outputText with escape="false" can output unescaped HTML:<h:outputText value=" This <b>is</b> pure <i>HTML</i><br>Cool!
// or
<h:outputText value="#{myBean.htmlString}" escape="false" />
[/nobr]