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