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