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