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