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