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