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