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