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