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