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