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