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