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