i just downloaded a font that is otf type Sintony-Bold.otf
placed it inside the fonts folder and in style.css i am using this rule
@font-face {
font-family: 'custom'; /*a name to be used later*/
src: url(../fonts/Sintony-Bold.otf); /*URL to font*/
}
and then using this font-family like this
font-family: 'custom';
but problem is that this is not giving any effect , when i try t inspect it gives me pt serif , or some other fonts , i'm using bootstrap how do i fix this issue , Please help