Select multiple font-families in a font-face?

edited March 2019 in Style Development [?]
I want to replace ugly and cursive fonts to a legible font.
/*global*/
@font-face{
font-family:'gungseo';
src:url(https://fonts.gstatic.com/s/nanumgothic/v7/PN_3Rfi-oW3hYwmKDpxS7F_D89jY.woff)}
@font-face{
font-family:'batang';
src:url(https://fonts.gstatic.com/s/nanumgothic/v7/PN_3Rfi-oW3hYwmKDpxS7F_D89jY.woff)}
@font-face{
font-family:'batangche';
src:url(https://fonts.gstatic.com/s/nanumgothic/v7/PN_3Rfi-oW3hYwmKDpxS7F_D89jY.woff)}
Could it be a way to select multiple 'font-family' to shorter those lines as like below?
@font-face{
font-family:'gungseo','batang','batangche';
src:url(https://fonts.gstatic.com/s/nanumgothic/v7/PN_3Rfi-oW3hYwmKDpxS7F_D89jY.woff)}

Comments

Sign In or Register to comment.