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