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