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