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