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