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