I'm importing 2 fonts in my CSS stylesheet but when I apply them, It only applies the second font(Roboto-Regular)
This is my stylesheet
@font-face {
font-family:'Tangerine-Bold';
src: url('fonts/Tangerine-Bold.ttf');
font-family:'Roboto-Regular';
src: url('fonts/Roboto-Regular.ttf');
}
h1{
font-family:'Tangerine-Bold';
}
h2{
font-family:'Roboto-Regular';
}
So, for h1 It also applies Roboto-Regular and not Tangerine-Bold as I want.