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