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