I'm trying to apply two downloaded fonts in my CSS for an HTML site. For some reason, even thought I use @font-face, it still doesn't work. Any idea of how to solve this?
Here's the code:
@font-face {
font-family: "BigNoodleTitling";
src: url(fonts/Big Noodle Titling/big_noodle_titling.ttf) format("truetype");
font-family: "RomanSD";
src: url(fonts/Roman/Roman SD.ttf) format("truetype");
}
#Encabezado {
border: 3px solid black;
background-color: #f3cb7b;
}
#Encabezado h1 {
text-align: center;
font-size: 18px;
font-family: "BigNoodleTitling";
}
#Encabezado h2 {
text-align: center;
font-size: 26px;
font-family: "RomanSD";