Can I use several fonts with the @font-face style? I want to use three fonts this way, but I can't figure out the code. So far I have this in my style sheet:
@font-face {
font-family: 'Underwood Champion Regular';
src: url('underwood_champion.eot');
src: local('Underwood Champion Regular'), local('UnderwoodChampion-Regular'), url('underwood_champion.ttf') format('truetype');
}
.champ {
font-family: 'Underwood Champion Regular', sans-serif;
}
I apply the class style "champ" to access this font and this works fine, but I want to add 2 other fonts (each will be also applied with a class). Can someone help?

