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