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