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