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