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