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