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