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