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