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