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