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