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