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