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