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