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