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