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