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