I am facing a weird problem with Italic font in HTML newsletters when I open them in Gmail.
I am using font-weight: 500; for the whole Headline, but when I try to Italicize a part of Headline then the font-weight goes normal for the text which is Italicized.
I am sharing the screenshot below to better understand the issue:
In the above screenshot taken from Gmail, font-weight:500 is set to whole headline. But when I try to Italicize the "October" then the font goes normal for that particular section.
here is the HTML:
<table role="presentation" class="wrap" width="570" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="left" class="hl-2">3. The month <i>October</i> is the best time to visit Jaipur.</td>
</tr>
</table>
here is the Css:
.hl-2 {
font-size: 18px;
line-height: 22px;
color: #34444c;
font-weight: 500;
}
Any idea how to handle this situation? Your help would be really appreciated.
Thanks!

