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