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