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