Recently, I discovered that my website only displays the font "Open Sans" correctly on my personal computer. When I tried to access it from two other PCs, the font was not displaying as intended. Strangely, the font appears fine on smartphones. What could be causing this inconsistency? Is there something missing in my CSS code?
If you'd like to take a look, here is the link to my website:
Below is the CSS responsible for styling the font:
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
* {
font-size: 100%;
font-family: 'Open sans';
}