Use on the webTotal Use [ 5062 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1405b9bd2b63d25ce0f5908f2f31fb76?family=Scala+Sans-Regular+Exp+Cn" 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/1405b9bd2b63d25ce0f5908f2f31fb76?family=Scala+Sans-Regular+Exp+Cn);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Scala Sans-Regular Exp Cn";
src: url("https://db.onlinewebfonts.com/t/1405b9bd2b63d25ce0f5908f2f31fb76.eot");
src: url("https://db.onlinewebfonts.com/t/1405b9bd2b63d25ce0f5908f2f31fb76.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1405b9bd2b63d25ce0f5908f2f31fb76.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1405b9bd2b63d25ce0f5908f2f31fb76.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1405b9bd2b63d25ce0f5908f2f31fb76.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1405b9bd2b63d25ce0f5908f2f31fb76.svg#Scala Sans-Regular Exp Cn")format("svg");
}
2CSS rules to specify fonts
font-family: "Scala Sans-Regular Exp Cn";