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