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