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