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