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