How do add multiple font-family to my style sheet using @font-face? Examples shows only single font-family addition like,
@font-face {
font-family: myFirstFont;
src: url(sansation_bold.woff);
font-weight: bold;
}
How about for a second font-family say mySecondFont?