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