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