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