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