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