My HTML code is very basic, like this:
<p class="class1">Text here</p>
And my CSS looks like this:
.class1 {
font-family: 'Open-Sans', sans-serif;
}
I have also linked Open-Sans in the head using a Google-generated link:
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&subset=cyrillic-ext" rel="stylesheet">
Despite all this, my text is still being displayed in Helvetica font. Any suggestions on where to start troubleshooting?