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