I have been working on an XSLT file and have been writing CSS for elements within it. I am looking to remove font tags from the code in order to adhere to proper conventions. Is there a way to replace these font tags while keeping the CSS classes for my specific elements intact?
<div class="TitleStyle">
<font class="WhiteHeader">
<xsl:value-of disable-output-escaping="yes" select="title" />
</font>
<font class="ProviderStyle">
@ <xsl:value-of disable-output-escaping="yes" select="job_board_provider"/>
</font>
</div>