Firefox is not rendering Open Sans semibold properly. But the same code in Chrome renders the font. Font is installed in my system. Is it possible to render it without using font weight property?
<html>
<style>
p{
font-family:"Open Sans Semibold";
}
</style>
<body>
<p >test</p>
</body>
</html>