Despite setting my text to font-family: Times New Roman, I'm seeing a different font in my Chrome browser.
Here is the relevant HTML code:
<p style="color:#F17141;font-size: 120px; font-family: "Times New Roman" ; font-weight: bold;">"</p>
And here is the relevant CSS:
element.style {
color: #F17141;
font-size: 120px;
font-family: "Times New Roman";
font-weight: bold;
}
The font actually rendered according to the developer tools in the browser is:
Times New Roman—Local file(1 glyph)
However, the text being displayed is not in Times New Roman as expected.