Use on the webTotal Use [ 6370 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/393bafa8141eeddcb0614442ac02dde6?family=SkolaSansCn-Light" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/393bafa8141eeddcb0614442ac02dde6?family=SkolaSansCn-Light);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "SkolaSansCn-Light";
src: url("https://db.onlinewebfonts.com/t/393bafa8141eeddcb0614442ac02dde6.eot");
src: url("https://db.onlinewebfonts.com/t/393bafa8141eeddcb0614442ac02dde6.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/393bafa8141eeddcb0614442ac02dde6.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/393bafa8141eeddcb0614442ac02dde6.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/393bafa8141eeddcb0614442ac02dde6.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/393bafa8141eeddcb0614442ac02dde6.svg#SkolaSansCn-Light")format("svg");
}
2CSS rules to specify fonts
font-family: "SkolaSansCn-Light";