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