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