Below is the CSS code I am currently using
html:not(.stylenotneeded), body:not(.stylenotneeded), form, fieldset, table, tr, td, img {
font: 100%/150% calibri;
}
Here is the corresponding HTML:
<div class="stylenotneeded">
<font face="Impact" size="9" color="8C003D"><b>Some Text</b></font><br>
<font face="verdana" size="4" color="8C003D"><b>Sometext 2</b></font>
</div>
<div>
<font face="Impact" size="9" color="8C003D"><b>Some Text</b></font><br>
<font face="verdana" size="4" color="8C003D"><b>Sometext 2</b></font>
</div>
I want the font-style
specified in the CSS
to be applied to all text excluding the content within the stylenotneeded
div.
I have already attempted a solution found on this website, but it was not successful. Can someone please provide guidance on how to achieve this?