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